16
16
# fixing all the non-iterator cases is useful though. Off by default.
17
17
# #
18
18
Checks : >
19
+ bugprone-*,
20
+ -bugprone-branch-clone,
21
+ -bugprone-easily-swappable-parameters,
22
+ -bugprone-exception-escape,
23
+ -bugprone-move-forwarding-reference,
24
+ -bugprone-narrowing-conversions,
25
+ -bugprone-reserved-identifier,
19
26
clang-diagnostic-*,clang-analyzer-*,
20
27
-clang-analyzer-core.NonNullParamChecker,
21
28
-clang-analyzer-cplusplus.NewDeleteLeaks,
22
29
-clang-analyzer-unix.Malloc,
23
30
-clang-analyzer-valist.Uninitialized,
24
31
-clang-diagnostic-unused-const-variable,
32
+ google-*,
33
+ -google-readability-avoid-underscore-in-googletest-name,
34
+ -google-readability-braces-around-statements,
35
+ -google-readability-casting,
36
+ -google-readability-todo,
37
+ modernize-use-override,
38
+ misc-*,
39
+ -misc-no-recursion,
40
+ -misc-non-private-member-variables-in-classes,
41
+ -misc-redundant-expression,
42
+ -misc-unused-parameters,
43
+ -misc-use-anonymous-namespace,
44
+ performance-*,
25
45
readability-*,
26
46
-readability-braces-around-statements,
47
+ -readability-convert-member-functions-to-static,
27
48
-readability-else-after-return,
28
49
-readability-function-cognitive-complexity,
50
+ -readability-identifier-length,
29
51
-readability-implicit-bool-conversion,
30
52
-readability-isolate-declaration,
31
53
-readability-magic-numbers,
@@ -35,26 +57,6 @@ Checks: >
35
57
-readability-redundant-access-specifiers,
36
58
-readability-uppercase-literal-suffix,
37
59
-readability-use-anyofallof,
38
- -readability-convert-member-functions-to-static,
39
- google-*,
40
- -google-readability-avoid-underscore-in-googletest-name,
41
- -google-readability-braces-around-statements,
42
- -google-readability-todo,
43
- -google-readability-casting,
44
- performance-*,
45
- bugprone-*,
46
- -bugprone-branch-clone,
47
- -bugprone-easily-swappable-parameters,
48
- -bugprone-exception-escape,
49
- -bugprone-move-forwarding-reference,
50
- -bugprone-narrowing-conversions,
51
- -bugprone-reserved-identifier,
52
- modernize-use-override,
53
- misc-*,
54
- -misc-no-recursion,
55
- -misc-non-private-member-variables-in-classes,
56
- -misc-redundant-expression,
57
- -misc-unused-parameters,
58
60
59
61
WarningsAsErrors : ' '
60
62
HeaderFilterRegex : ' '
0 commit comments