1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 03:27:04 +09:00

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
Signed by: github
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/.*'