Skip to content

Commit db55825

Browse files
authored
Move JIT's clang-tidy flags into configuration files and add a root clang-tidy config that disables all checks. (dotnet#93951)
1 parent 1410793 commit db55825

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.clang-tidy

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
Checks: '-*' # Disable all checks

src/coreclr/jit/.clang-tidy

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
Checks: '-*,readability-braces*,modernize-use-nullptr'
3+
HeaderFilterRegex: 'jit/.*'

0 commit comments

Comments
 (0)