mirror of
https://github.com/Savapitech/42sh.git
synced 2026-01-18 16:57:28 +01:00
39 lines
1020 B
YAML
39 lines
1020 B
YAML
Checks: "-*,
|
|
bugprone-*,
|
|
-bugprone-easily-swappable-parameters,
|
|
-bugprone-multi-level-implicit-pointer-conversion,
|
|
misc-*,
|
|
-misc-no-recursion,
|
|
performance-*,
|
|
portability-*,
|
|
readability-*,
|
|
-bugprone-narrowing-conversions,
|
|
-readability-magic-numbers,
|
|
-readability-braces-around-statements,
|
|
-readability-identifier-length,
|
|
-readability-implicit-bool-conversion,
|
|
-readability-named-parameter,
|
|
clang-analyzer-*,
|
|
modernize-*,
|
|
llvm-*,
|
|
"
|
|
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.EnumCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.UnionCase
|
|
value: lower_case
|
|
|
|
- key: readability-identifier-naming.FunctionCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.ParameterCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.VariableCase
|
|
value: lower_case
|
|
|
|
- key: readability-identifier-naming.GlobalVariableCase
|
|
value: UPPER_CASE
|
|
|
|
- key: readability-function-cognitive-complexity.IgnoreMacros
|
|
value: true
|