2022-10-17 04:30:13 +08:00
|
|
|
Checks: >
|
|
|
|
-*,
|
2023-02-03 14:31:48 +08:00
|
|
|
bugprone-*,
|
2022-10-17 04:30:13 +08:00
|
|
|
clang-analyzer-*,
|
2023-01-16 14:14:02 +08:00
|
|
|
misc-*,
|
2023-01-16 04:13:20 +08:00
|
|
|
modernize-*,
|
2023-04-09 02:51:35 +08:00
|
|
|
performance-*,
|
2023-01-16 13:42:32 +08:00
|
|
|
portability-*,
|
2023-01-23 04:51:07 +08:00
|
|
|
readability-*,
|
2023-02-03 14:31:48 +08:00
|
|
|
-bugprone-assignment-in-if-condition,
|
|
|
|
-bugprone-branch-clone,
|
|
|
|
-bugprone-easily-swappable-parameters,
|
|
|
|
-bugprone-exception-escape,
|
|
|
|
-bugprone-implicit-widening-of-multiplication-result,
|
|
|
|
-bugprone-integer-division,
|
|
|
|
-bugprone-misplaced-widening-cast,
|
|
|
|
-bugprone-narrowing-conversions,
|
|
|
|
-bugprone-signed-char-misuse,
|
|
|
|
-bugprone-string-integer-assignment,
|
|
|
|
-bugprone-suspicious-include,
|
|
|
|
-bugprone-unchecked-optional-access,
|
2022-10-17 04:30:13 +08:00
|
|
|
-clang-analyzer-nullability.NullablePassedToNonnull,
|
|
|
|
-clang-analyzer-optin.cplusplus.VirtualCall,
|
|
|
|
-clang-analyzer-optin.osx.*,
|
|
|
|
-clang-analyzer-osx.*,
|
|
|
|
-clang-analyzer-unix.Malloc,
|
2023-01-16 14:14:02 +08:00
|
|
|
-misc-const-correctness,
|
|
|
|
-misc-misplaced-const,
|
|
|
|
-misc-no-recursion,
|
|
|
|
-misc-non-private-member-variables-in-classes,
|
2023-01-16 04:13:20 +08:00
|
|
|
-modernize-avoid-c-arrays,
|
|
|
|
-modernize-macro-to-enum,
|
|
|
|
-modernize-return-braced-init-list,
|
|
|
|
-modernize-use-nodiscard,
|
|
|
|
-modernize-use-trailing-return-type,
|
2023-04-09 02:51:35 +08:00
|
|
|
-performance-inefficient-string-concatenation,
|
|
|
|
-performance-no-int-to-ptr,
|
2023-01-19 00:27:17 +08:00
|
|
|
-readability-braces-around-statements,
|
|
|
|
-readability-container-contains,
|
2023-01-23 04:51:07 +08:00
|
|
|
-readability-convert-member-functions-to-static,
|
|
|
|
-readability-else-after-return,
|
2023-01-19 00:27:17 +08:00
|
|
|
-readability-function-cognitive-complexity,
|
2023-01-23 04:51:07 +08:00
|
|
|
-readability-function-size,
|
|
|
|
-readability-identifier-length,
|
|
|
|
-readability-implicit-bool-conversion,
|
2023-01-19 00:27:17 +08:00
|
|
|
-readability-magic-numbers,
|
2023-01-23 04:51:07 +08:00
|
|
|
-readability-named-parameter,
|
|
|
|
-readability-uppercase-literal-suffix,
|
2022-10-18 08:44:31 +08:00
|
|
|
CheckOptions:
|
|
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
|
2022-10-24 06:53:36 +08:00
|
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
2022-10-24 05:17:57 +08:00
|
|
|
- { key: readability-identifier-naming.ParameterCase, value: camelBack }
|
2022-10-17 04:30:13 +08:00
|
|
|
HeaderFilterRegex: '.*'
|
|
|
|
WarningsAsErrors: '*'
|
2023-01-14 08:16:42 +08:00
|
|
|
UseColor: true
|