cpp_drawing/.clang-tidy
2025-09-29 19:13:57 +02:00

31 lines
775 B
YAML

Checks: >
clang-analyzer-*,
bugprone-*,
performance-*,
readability-*,
modernize-*,
portability-*,
misc-unused-parameters,
misc-unused-alias-decls,
misc-unused-using-decls,
-readability-magic-numbers,
-readability-identifier-naming,
-modernize-use-trailing-return-type
WarningsAsErrors: ''
HeaderFilterRegex: '.*'
AnalyzeTemporaryDtors: true
FormatStyle: file
CheckOptions:
- key: modernize-use-nullptr.NullMacros
value: 'NULL'
- key: readability-braces-around-statements.ShortStatementLines
value: '1'
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: readability-function-cognitive-complexity.Threshold
value: '25'