@@ -8,26 +8,30 @@ Checks: >
88 -fuchsia*,
99 -llvmlibc*,
1010 -llvm-header-guard,
11+ -llvm-prefer-static-over-anonymous-namespace,
1112 -misc-no-recursion,
13+ -misc-include-cleaner,
14+ -misc-const-correctness,
1215 -modernize-use-trailing-return-type,
16+ -portability-avoid-pragma-once,
1317 -readability-redundant-access-specifiers,
1418 -readability-convert-member-functions-to-static,
1519 -cppcoreguidelines-avoid-const-or-ref-data-members
1620
1721CheckOptions :
18- - key : misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
19- value : ' 1 '
22+ - key : misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
23+ value : " 1 "
2024 - key : readability-identifier-length.MinimumLoopCounterNameLength
2125 value : 1
2226 - key : readability-identifier-length.IgnoredVariableNames
23- value : ' ^[defijkptuvw]$'
27+ value : " ^[defijkptuvw]$"
2428 # More options here: https://clang.llvm.org/extra/clang-tidy/checks/readability/identifier-naming.html
2529 - key : readability-identifier-naming.NamespaceCase
2630 value : lower_case
2731 - key : readability-identifier-naming.ClassCase
28- value : CamelCase
32+ value : CamelCase
2933 - key : readability-identifier-naming.StructCase
30- value : CamelCase
34+ value : CamelCase
3135 - key : readability-identifier-naming.FunctionCase
3236 value : lower_case
3337 - key : readability-identifier-naming.VariableCase
@@ -51,14 +55,10 @@ CheckOptions:
5155 - key : readability-identifier-naming.GlobalFunctionCase
5256 value : lower_case
5357 - key : readability-identifier-naming.MemberConstantCase
54- value : CamelCase
58+ value : CamelCase
5559 - key : readability-identifier-naming.StaticConstantCase
56- value : lower_case
60+ value : lower_case
5761 - key : readability-function-cognitive-complexity.Threshold
5862 value : 10
5963 - key : readability-function-size.ParameterThreshold
6064 value : 4
61- - key : misc-include-cleaner.IgnoreHeaders
62- value : utility;cstddef;geode/.*_export\.h;geode/.*/common\.h;geode/basic/types\.h;geode/basic/assert\.h;
63-
64-
0 commit comments