Move JIT's clang-tidy flags into configuration files and add a root clang-tidy config that disables all checks. (#93951)

This commit is contained in:
Jeremy Koritzinsky 2023-10-25 15:16:22 -07:00 committed by GitHub
parent 14107934ad
commit db558253fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

2
.clang-tidy Normal file
View File

@ -0,0 +1,2 @@
---
Checks: '-*' # Disable all checks

View File

@ -0,0 +1,3 @@
---
Checks: '-*,readability-braces*,modernize-use-nullptr'
HeaderFilterRegex: 'jit/.*'