No specific methodology other than checking the github CI output for the `clang-tidy` job, and fixing things one at a time.
26 lines
779 B
YAML
26 lines
779 B
YAML
---
|
|
Checks: 'clang-diagnostic-*,
|
|
,-clang-diagnostic-ignored-optimization-argument,
|
|
,-cplusplus.InnerPointer,
|
|
,clang-analyzer-*,
|
|
,-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
|
|
,-clang-analyzer-security.insecureAPI.strcpy,
|
|
,-clang-analyzer-cplusplus.InnerPointer,
|
|
,bugprone-*,
|
|
,-bugprone-easily-swappable-parameters,
|
|
,performance-*,
|
|
,-performance-no-int-to-ptr,
|
|
,readability-*,
|
|
,-readability-braces-around-statements,
|
|
,-readability-identifier-length,
|
|
,-readability-else-after-return,
|
|
,-readability-magic-numbers,
|
|
,-readability-function-cognitive-complexity,
|
|
,-readability-uppercase-literal-suffix,
|
|
,modernize-*,
|
|
,-modernize-use-auto,
|
|
,-modernize-avoid-c-arrays,
|
|
,-modernize-redundant-void-arg,
|
|
,-modernize-use-trailing-return-type,
|
|
'
|