2021-10-13 23:12:51 +00:00
|
|
|
---
|
2021-11-03 13:59:39 +00:00
|
|
|
# PRs welcome to fix & re-enable any of these explicitly-disabled checks
|
2021-10-13 23:12:51 +00:00
|
|
|
Checks: >
|
2022-01-24 19:07:55 +00:00
|
|
|
bugprone-*,
|
2021-11-03 13:59:39 +00:00
|
|
|
-bugprone-branch-clone,
|
|
|
|
-bugprone-easily-swappable-parameters,
|
|
|
|
-bugprone-implicit-widening-of-multiplication-result,
|
2022-01-24 19:07:55 +00:00
|
|
|
-bugprone-narrowing-conversions,
|
|
|
|
cert-*,
|
|
|
|
-cert-err58-cpp,
|
|
|
|
clang-analyzer-core.*,
|
|
|
|
clang-analyzer-cplusplus.*,
|
2022-04-19 14:51:25 +00:00
|
|
|
clang-analyzer-deadcode.*,
|
2022-08-24 21:03:30 +00:00
|
|
|
clang-analyzer-nullability.*,
|
2022-04-19 14:51:25 +00:00
|
|
|
clang-analyzer-optin.cplusplus.*,
|
2022-01-24 19:07:55 +00:00
|
|
|
clang-analyzer-security.*,
|
|
|
|
clang-analyzer-valist.*,
|
|
|
|
cppcoreguidelines-init-variables,
|
|
|
|
cppcoreguidelines-prefer-member-initializer,
|
2022-02-07 04:28:36 +00:00
|
|
|
cppcoreguidelines-slicing,
|
2022-08-03 17:03:28 +00:00
|
|
|
cppcoreguidelines-special-member-functions,
|
2022-01-24 19:07:55 +00:00
|
|
|
cppcoreguidelines-virtual-class-destructor,
|
2022-08-13 17:11:07 +00:00
|
|
|
google-explicit-constructor,
|
2022-01-24 19:07:55 +00:00
|
|
|
misc-*,
|
|
|
|
-misc-no-recursion,
|
|
|
|
-misc-non-private-member-variables-in-classes,
|
|
|
|
modernize-*,
|
|
|
|
-modernize-use-trailing-return-type,
|
|
|
|
performance-*,
|
2022-08-24 21:03:30 +00:00
|
|
|
portability-*,
|
2022-01-24 19:07:55 +00:00
|
|
|
readability-*,
|
2021-11-03 13:59:39 +00:00
|
|
|
-readability-function-cognitive-complexity,
|
2022-01-24 02:44:14 +00:00
|
|
|
-readability-identifier-length,
|
2021-11-03 13:59:39 +00:00
|
|
|
-readability-magic-numbers,
|
|
|
|
-readability-qualified-auto,
|
2022-09-07 16:04:28 +00:00
|
|
|
|
|
|
|
CheckOptions:
|
|
|
|
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.VariableCase, value: lower_case }
|
|
|
|
|