25 lines
509 B
YAML
25 lines
509 B
YAML
Checks: >
|
|
-*,
|
|
clang-diagnostic-*,
|
|
clang-analyzer-*,
|
|
readability-*,
|
|
-readability-identifier-length,
|
|
-readability-magic-numbers,
|
|
-readability-function-cognitive-complexity,
|
|
bugprone-*,
|
|
-bugprone-easily-swappable-parameters,
|
|
misc-*,
|
|
-misc-unused-parameters,
|
|
portability-*
|
|
|
|
WarningsAsErrors: ''
|
|
|
|
HeaderFilterRegex: '.*'
|
|
|
|
CheckOptions:
|
|
- key: readability-function-size.LineThreshold
|
|
value: '100'
|
|
- key: readability-function-size.StatementThreshold
|
|
value: '50'
|
|
|
|
FormatStyle: none |