|
1 | 1 | ---
|
2 | 2 | Checks: >
|
3 |
| - readability-else-after-return, |
4 |
| - modernize-use-nullptr, |
5 | 3 | bugprone-*,
|
6 |
| - -bugprone-not-null-terminated-result, |
7 |
| - -bugprone-unused-return-value, |
| 4 | + modernize-use-bool-literals, |
| 5 | + modernize-use-nullptr, |
| 6 | + performance-for-range-copy, |
| 7 | + readability-const-return-type, |
| 8 | + readability-else-after-return, |
| 9 | + readability-redundant-control-flow, |
| 10 | + readability-redundant-string-cstr, |
| 11 | + readability-redundant-string-init, |
8 | 12 | -bugprone-branch-clone,
|
| 13 | + -bugprone-copy-constructor-init, |
9 | 14 | -bugprone-easily-swappable-parameters,
|
10 |
| - -bugprone-reserved-identifier, |
11 |
| - -bugprone-macro-parentheses, |
12 | 15 | -bugprone-forward-declaration-namespace,
|
13 | 16 | -bugprone-forwarding-reference-overload,
|
14 |
| - -bugprone-undelegated-constructor, |
15 | 17 | -bugprone-implicit-widening-of-multiplication-result,
|
16 |
| - -bugprone-narrowing-conversions, |
| 18 | + -bugprone-macro-parentheses, |
17 | 19 | -bugprone-misplaced-widening-cast,
|
18 |
| - -bugprone-suspicious-include, |
| 20 | + -bugprone-narrowing-conversions, |
| 21 | + -bugprone-not-null-terminated-result, |
| 22 | + -bugprone-reserved-identifier, |
19 | 23 | -bugprone-signed-char-misuse,
|
20 |
| - -bugprone-copy-constructor-init, |
| 24 | + -bugprone-suspicious-include, |
| 25 | + -bugprone-undelegated-constructor, |
| 26 | + -bugprone-unused-return-value, |
21 | 27 | -clang-analyzer-core.CallAndMessage,
|
| 28 | + -clang-analyzer-core.NonNullParamChecker, |
22 | 29 | -clang-analyzer-core.NullDereference,
|
23 |
| - -clang-analyzer-optin.cplusplus.UninitializedObject, |
24 |
| - -clang-analyzer-optin.performance, |
25 |
| - -clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker, |
26 |
| - -clang-analyzer-deadcode.DeadStores, |
27 | 30 | -clang-analyzer-cplusplus.Move,
|
28 |
| - -clang-analyzer-optin.cplusplus.VirtualCall, |
29 |
| - -clang-analyzer-security.insecureAPI.strcpy, |
| 31 | + -clang-analyzer-deadcode.DeadStores, |
30 | 32 | -clang-analyzer-nullability.NullablePassedToNonnull,
|
| 33 | + -clang-analyzer-optin.cplusplus.UninitializedObject, |
| 34 | + -clang-analyzer-optin.cplusplus.VirtualCall, |
| 35 | + -clang-analyzer-optin.osx.cocoa.localizability.EmptyLocalizationContextChecker, |
| 36 | + -clang-analyzer-optin.performance, |
31 | 37 | -clang-analyzer-optin.performance.Padding,
|
32 | 38 | -clang-analyzer-security.insecureAPI.rand,
|
33 |
| - -clang-analyzer-core.NonNullParamChecker, |
| 39 | + -clang-analyzer-security.insecureAPI.strcpy, |
34 | 40 | -clang-analyzer-unix.Malloc,
|
35 | 41 | -clang-diagnostic-implicit-int-conversion
|
36 | 42 | WarningsAsErrors: '*'
|
|
0 commit comments