You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.0 KiB
21 lines
1.0 KiB
Checks:
|
|
-*,
|
|
clang-analyzer-*,
|
|
cppcoreguidelines-avoid-c-arrays,
|
|
cppcoreguidelines-special-member-functions,
|
|
readability-*,
|
|
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.ConstexprVariableCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ConstexprVariableIgnoredRegexp, value: "^Is.+" }
|
|
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
|
|
- { key: readability-identifier-naming.PrivateMemberCase, value: lower_case }
|
|
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m_ }
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.StructIgnoredRegexp, value: "parse_number" }
|
|
- { key: readability-identifier-naming.VariableCase, value: lower_case }
|
|
|
|
HeaderFilterRegex: 'argparse/.+\.hpp'
|