45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
|
|
Checks: >
|
||
|
|
-*,
|
||
|
|
bugprone-*,
|
||
|
|
cert-*,
|
||
|
|
clang-analyzer-*,
|
||
|
|
cppcoreguidelines-*,
|
||
|
|
-cppcoreguidelines-avoid-magic-numbers,
|
||
|
|
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
|
||
|
|
-cppcoreguidelines-owning-memory,
|
||
|
|
google-*,
|
||
|
|
-google-readability-todo,
|
||
|
|
misc-*,
|
||
|
|
-misc-non-private-member-variables-in-classes,
|
||
|
|
modernize-*,
|
||
|
|
-modernize-use-trailing-return-type,
|
||
|
|
performance-*,
|
||
|
|
portability-*,
|
||
|
|
readability-*,
|
||
|
|
-readability-magic-numbers,
|
||
|
|
-readability-identifier-length
|
||
|
|
|
||
|
|
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.FunctionCase
|
||
|
|
value: lower_case
|
||
|
|
- key: readability-identifier-naming.VariableCase
|
||
|
|
value: lower_case
|
||
|
|
- key: readability-identifier-naming.MemberCase
|
||
|
|
value: lower_case
|
||
|
|
- key: readability-identifier-naming.MemberSuffix
|
||
|
|
value: _
|
||
|
|
- key: readability-identifier-naming.EnumConstantCase
|
||
|
|
value: CamelCase
|
||
|
|
- key: readability-identifier-naming.EnumConstantPrefix
|
||
|
|
value: k
|
||
|
|
- key: readability-identifier-naming.MacroDefinitionCase
|
||
|
|
value: UPPER_CASE
|
||
|
|
|
||
|
|
WarningsAsErrors: ""
|