aboutsummaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-11-13 19:49:47 -0500
committerDavid Robillard <d@drobilla.net>2025-11-13 20:00:28 -0500
commit46ab5fa6820e069ae4e97a26712b03144a34a04f (patch)
treee460d82a0f7ef0284085a3345b58f806766978a7 /.clang-tidy
parentcbe7327ff36ca6b142c43c0e0491b989726ecc9b (diff)
downloadlv2-46ab5fa6820e069ae4e97a26712b03144a34a04f.tar.xz
Strengthen clang-tidy configuration
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy8
1 files changed, 1 insertions, 7 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 013eda7..f8c3249 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -6,14 +6,8 @@ Checks: >
-*-macro-to-enum,
-*-magic-numbers,
-altera-*,
- -bugprone-assignment-in-if-condition,
-bugprone-easily-swappable-parameters,
- -bugprone-macro-parentheses,
- -clang-diagnostic-unused-function,
- -clang-diagnostic-unused-macros,
-llvmlibc-*,
- -misc-include-cleaner,
- -performance-no-int-to-ptr,
-readability-identifier-length,
CheckOptions:
- key: hicpp-uppercase-literal-suffix.NewSuffixes
@@ -21,5 +15,5 @@ CheckOptions:
- key: readability-uppercase-literal-suffix.NewSuffixes
value: L;U;f
FormatStyle: file
-HeaderFilterRegex: 'lv2/.*\.h'
+HeaderFilterRegex: 'lv2/.*\.h$'
WarningsAsErrors: '*'