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