2020-08-30 09:16:53 -04:00
|
|
|
Checks: >
|
|
|
|
readability-*,
|
|
|
|
performance-*,
|
|
|
|
modernize-*,
|
|
|
|
google-readability-todo,
|
|
|
|
cert-err34-c,
|
|
|
|
cert-flp30-c,
|
|
|
|
bugprone-*,
|
|
|
|
misc-misplaced-const,
|
|
|
|
misc-redundant-expression,
|
|
|
|
misc-static-assert,
|
|
|
|
-clang-analyzer-*,
|
|
|
|
-readability-isolate-declaration,
|
2022-08-23 00:18:17 -04:00
|
|
|
-readability-magic-numbers,
|
|
|
|
-readability-identifier-length,
|
|
|
|
-bugprone-easily-swappable-parameters
|
2020-08-30 09:16:53 -04:00
|
|
|
AnalyzeTemporaryDtors: false
|
|
|
|
FormatStyle: file
|
2020-10-21 20:39:51 -04:00
|
|
|
CheckOptions:
|
|
|
|
- key: readability-magic-numbers.IgnoredIntegerValues
|
2021-06-08 20:51:33 -04:00
|
|
|
value: 4;8;16;24;32;1;2;3;4096;65536;
|
|
|
|
- key: readability-magic-numbers.IgnoredFloatingPointValues
|
2021-06-13 20:51:09 -04:00
|
|
|
value: 255.0;1.0;
|
2022-08-23 00:18:17 -04:00
|
|
|
- key: readability-function-cognitive-complexity.IgnoreMacros
|
|
|
|
value: true
|
2024-02-16 10:42:21 -05:00
|
|
|
- key: readability-function-cognitive-complexity.Threshold
|
|
|
|
value: 50
|
2022-08-23 00:18:17 -04:00
|
|
|
- key: readability-function-cognitive-complexity.DescribeBasicIncrements
|
|
|
|
value: true
|
2024-02-16 10:42:21 -05:00
|
|
|
- key: bugprone-signed-char-misuse.CharTypdefsToIgnore
|
|
|
|
value: int8_t
|