2023-03-04 13:33:40 +01:00
|
|
|
Checks: >
|
|
|
|
-*,
|
|
|
|
bugprone-*,
|
|
|
|
google-*,
|
|
|
|
misc-*,
|
|
|
|
modernize-*,
|
|
|
|
performance-*,
|
|
|
|
portability-*,
|
|
|
|
readability-*,
|
2023-12-03 14:14:45 +01:00
|
|
|
-bugprone-easily-swappable-parameters,
|
2023-03-04 13:33:40 +01:00
|
|
|
-google-readability-namespace-comments,
|
|
|
|
-google-runtime-int,
|
|
|
|
-google-runtime-references,
|
2023-12-03 14:14:45 +01:00
|
|
|
-llvmlibc-callee-namespace,
|
2023-03-04 13:33:40 +01:00
|
|
|
-misc-non-private-member-variables-in-classes,
|
2023-12-03 14:14:45 +01:00
|
|
|
-modernize-macro-to-enum,
|
|
|
|
-modernize-use-trailing-return-type,
|
2023-03-04 13:33:40 +01:00
|
|
|
-readability-braces-around-statements,
|
2023-12-03 14:14:45 +01:00
|
|
|
-readability-identifier-length,
|
|
|
|
-readability-identifier-naming,
|
|
|
|
-readability-magic-numbers,
|
|
|
|
-readability-named-parameter
|
2023-03-04 13:33:40 +01:00
|
|
|
|
|
|
|
CheckOptions:
|
|
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.TemplateParameterCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.FunctionCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
|
|
|
|
- { key: readability-identifier-naming.ProtectedMemberSuffix, value: _ }
|
|
|
|
- { key: readability-identifier-naming.MacroDefinitionCase, value: UPPER_CASE }
|
|
|
|
- { key: readability-identifier-naming.EnumConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.EnumConstantPrefix, value: k }
|
|
|
|
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: k }
|
|
|
|
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.GlobalConstantPrefix, value: k }
|
|
|
|
- { key: readability-identifier-naming.MemberConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.MemberConstantPrefix, value: k }
|
|
|
|
- { key: readability-identifier-naming.StaticConstantCase, value: CamelCase }
|
|
|
|
- { key: readability-identifier-naming.StaticConstantPrefix, value: k }
|
2023-12-03 14:14:45 +01:00
|
|
|
- { key: readability-identifier-naming.VariableCase, value: CamelCase }
|