upx/.clang-tidy

33 lines
1.0 KiB
Plaintext
Raw Normal View History

2024-03-08 10:52:44 +00:00
# vim:set ft=yaml ts=2 sw=2 et:
# Copyright (C) Markus Franz Xaver Johannes Oberhumer
2024-03-23 19:18:28 +00:00
# for clang-tidy from https://clang.llvm.org/extra/clang-tidy/
2023-07-07 19:40:36 +00:00
---
2023-07-26 20:28:47 +00:00
Checks: >
-*,
bugprone-*,
-bugprone-assignment-in-if-condition,
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
-bugprone-empty-catch,
2023-07-26 20:28:47 +00:00
-bugprone-implicit-widening-of-multiplication-result,
-bugprone-macro-parentheses,
-bugprone-narrowing-conversions,
-bugprone-reserved-identifier,
-bugprone-sizeof-expression,
-bugprone-suspicious-include,
-bugprone-suspicious-memory-comparison,
-bugprone-suspicious-string-compare,
-bugprone-switch-missing-default-case,
2023-07-26 20:28:47 +00:00
clang-analyzer-*,
-clang-analyzer-optin.performance.Padding,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-clang-analyzer-security.insecureAPI.strcpy,
2024-04-14 00:15:26 +00:00
clang-diagnostics-*,
2023-07-31 12:49:48 +00:00
performance-*,
-performance-avoid-endl,
2023-07-31 12:49:48 +00:00
-performance-unnecessary-value-param,
2023-07-07 19:40:36 +00:00
FormatStyle: file
HeaderFilterRegex: '.*'
2023-07-31 12:49:48 +00:00
InheritParentConfig: false
2023-07-07 19:40:36 +00:00
...