Skip to content

Commit

Permalink
.clang-tidy: Disable misc-no-recursion in general/across the monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
dwblaikie committed Jun 8, 2021
1 parent 433c8d9 commit 49454eb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,readability-identifier-naming'
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,-misc-non-private-member-variables-in-classes,-misc-no-recursion,readability-identifier-naming'
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
Expand Down
2 changes: 1 addition & 1 deletion clang/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Note that the readability-identifier-naming check is disabled, there are too
# many violations in the codebase and they create too much noise in clang-tidy
# results.
Checks: '-readability-identifier-naming,-misc-no-recursion'
Checks: '-readability-identifier-naming'
InheritParentConfig: true
2 changes: 1 addition & 1 deletion flang/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Checks: '-llvm-include-order,-readability-identifier-naming,-misc-no-recursion,-clang-diagnostic-*'
Checks: '-llvm-include-order,-readability-identifier-naming,-clang-diagnostic-*'
InheritParentConfig: true
2 changes: 1 addition & 1 deletion flang/include/flang/Lower/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: 'readability-identifier-naming,llvm-include-order,misc-no-recursion,clang-diagnostic-*'
Checks: 'readability-identifier-naming,llvm-include-order,clang-diagnostic-*'
InheritParentConfig: true
CheckOptions:
- key: readability-identifier-naming.MemberCase
Expand Down
2 changes: 1 addition & 1 deletion flang/include/flang/Optimizer/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: 'readability-identifier-naming,llvm-include-order,misc-no-recursion,clang-diagnostic-*'
Checks: 'readability-identifier-naming,llvm-include-order,clang-diagnostic-*'
InheritParentConfig: true
CheckOptions:
- key: readability-identifier-naming.MemberCase
Expand Down
2 changes: 1 addition & 1 deletion flang/lib/Lower/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: 'readability-identifier-naming,llvm-include-order,misc-no-recursion,clang-diagnostic-*'
Checks: 'readability-identifier-naming,llvm-include-order,clang-diagnostic-*'
InheritParentConfig: true
CheckOptions:
- key: readability-identifier-naming.MemberCase
Expand Down
2 changes: 1 addition & 1 deletion flang/lib/Optimizer/.clang-tidy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Checks: 'readability-identifier-naming,llvm-include-order,misc-no-recursion,clang-diagnostic-*'
Checks: 'readability-identifier-naming,llvm-include-order,clang-diagnostic-*'
InheritParentConfig: true
CheckOptions:
- key: readability-identifier-naming.MemberCase
Expand Down

0 comments on commit 49454eb

Please sign in to comment.