forked from OSchip/llvm-project
.clang-tidy: Disable misc-no-recursion in general/across the monorepo
This commit is contained in:
parent
433c8d950c
commit
49454ebc56
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue