|
5 | 5 | Checks: > |
6 | 6 | *, |
7 | 7 | -altera*, |
| 8 | + -boost*, |
8 | 9 | -fuchsia*, |
9 | 10 | -llvmlibc*, |
10 | 11 | -llvm-header-guard, |
11 | 12 | -llvm-prefer-static-over-anonymous-namespace, |
| 13 | + -google-readability-todo, |
12 | 14 | -misc-no-recursion, |
13 | 15 | -misc-include-cleaner, |
14 | 16 | -misc-const-correctness, |
15 | 17 | -modernize-use-trailing-return-type, |
16 | 18 | -portability-avoid-pragma-once, |
| 19 | + -readability-use-anyofallof, |
17 | 20 | -readability-redundant-access-specifiers, |
18 | 21 | -readability-convert-member-functions-to-static, |
19 | | - -cppcoreguidelines-avoid-const-or-ref-data-members |
| 22 | + -cppcoreguidelines-avoid-const-or-ref-data-members, |
| 23 | + -cppcoreguidelines-pro-bounds-constant-array-index |
20 | 24 |
|
21 | 25 | CheckOptions: |
22 | 26 | - key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic |
23 | 27 | value: "1" |
24 | 28 | - key: readability-identifier-length.MinimumLoopCounterNameLength |
25 | 29 | value: 1 |
26 | 30 | - key: readability-identifier-length.IgnoredVariableNames |
27 | | - value: "^[defijkptuvw]$" |
| 31 | + value: "^[_defijkptuvwxyz]$" |
28 | 32 | # More options here: https://clang.llvm.org/extra/clang-tidy/checks/readability/identifier-naming.html |
29 | 33 | - key: readability-identifier-naming.NamespaceCase |
30 | 34 | value: lower_case |
@@ -60,5 +64,9 @@ CheckOptions: |
60 | 64 | value: lower_case |
61 | 65 | - key: readability-function-cognitive-complexity.Threshold |
62 | 66 | value: 10 |
| 67 | + - key: readability-function-cognitive-complexity.IgnoreMacros |
| 68 | + value: true |
63 | 69 | - key: readability-function-size.ParameterThreshold |
64 | 70 | value: 4 |
| 71 | + - key: cppcoreguidelines-pro-type-member-init.IgnoreArrays |
| 72 | + value: true |
0 commit comments