aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-12 16:10:11 -0500
committerDavid Robillard <d@drobilla.net>2022-12-12 16:10:11 -0500
commit6fb3fa46a3b5b11706e0afa3d5f9d4904f53b664 (patch)
tree05f7296b641e621834c786cb9406b5e8f12e8804
parent3287f41db2fd696271f317cea8ce361d7b68e818 (diff)
downloadjalv-6fb3fa46a3b5b11706e0afa3d5f9d4904f53b664.tar.gz
jalv-6fb3fa46a3b5b11706e0afa3d5f9d4904f53b664.tar.bz2
jalv-6fb3fa46a3b5b11706e0afa3d5f9d4904f53b664.zip
Strengthen clang-tidy configuration
-rw-r--r--.clang-tidy8
1 files changed, 5 insertions, 3 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 0b547da..89606da 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -4,12 +4,9 @@ Checks: >
-*-magic-numbers,
-*-named-parameter,
-*-narrowing-conversions,
- -*-reserved-identifier,
- -*-uppercase-literal-suffix,
-altera-*,
-bugprone-branch-clone,
-bugprone-easily-swappable-parameters,
- -bugprone-macro-parentheses,
-cert-err33-c,
-cert-err34-c,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
@@ -33,6 +30,11 @@ Checks: >
-readability-implicit-bool-conversion,
-readability-non-const-parameter,
-readability-static-accessed-through-instance,
+CheckOptions:
+ - key: hicpp-uppercase-literal-suffix.NewSuffixes
+ value: 'L;U;UL;ULL'
+ - key: readability-uppercase-literal-suffix.NewSuffixes
+ value: 'L;U;UL;ULL'
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: file