increase clang-tidy coverage in torch/csrc (#103058)

Fixes #ISSUE_NUMBER

Pull Request resolved: https://github.com/pytorch/pytorch/pull/103058
Approved by: https://github.com/Skylion007
This commit is contained in:
cyy
2023-09-08 15:07:32 +00:00
committed by PyTorch MergeBot
parent 2028987bf7
commit cdf7f3e780
11 changed files with 42 additions and 41 deletions

View File

@ -44,7 +44,7 @@ modernize-*,
performance-*,
readability-container-size-empty,
'
HeaderFilterRegex: '^(c10/(?!test)|torch/csrc/(?!deploy/interpreter/cpython)).*$'
HeaderFilterRegex: '^(c10/(?!test)|torch/csrc/).*$'
AnalyzeTemporaryDtors: false
WarningsAsErrors: '*'
...