skiplist/.clang-tidy
2024-04-03 09:50:31 -04:00

26 lines
631 B
YAML

---
Checks: >
bugprone-*,
clang-analyzer-*,
google-*,
misc-*,
modernize-*,
performance-*,
portability-*,
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
-bugprone-macro-parentheses,
-bugprone-narrowing-conversions,
-bugprone-not-null-terminated-result,
-bugprone-reserved-identifier,
-bugprone-sizeof-expression,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-clang-analyzer-security.insecureAPI.strcpy,
-google-readability-todo,
-misc-unused-parameters,
-misc-no-recursion,
-performance-no-int-to-ptr,
-bugprone-assignment-in-if-condition,
...