mirror of
https://github.com/KeqingMoe/argparse.git
synced 2025-07-04 15:14:39 +00:00
Also converts most C-style arrays to a std::array onjects. The check is disabled for ArgumentParser::parse_args(int, const char *const[]) as this is a helper function to convert away from a common input format. Signed-off-by: Sean Robinson <sean.robinson@scottsdalecc.edu>
19 lines
793 B
YAML
19 lines
793 B
YAML
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.FunctionCase, value: lower_case }
|
|
- { key: readability-identifier-naming.LocalVariableIgnoredRegexp, value: "^[a-z][a-z_]+" }
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|
|
- { key: readability-identifier-naming.PrivateMemberPrefix, value: m }
|
|
- { key: readability-identifier-naming.StructCase, value: lower_case }
|
|
- { key: readability-identifier-naming.VariableCase, value: camelBack }
|
|
|
|
HeaderFilterRegex: '.*'
|