summaryrefslogtreecommitdiffstats
path: root/test/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2025-01-19 09:24:39 -0500
committerDavid Robillard <d@drobilla.net>2025-01-19 19:34:38 -0500
commite37f70b72357dc01d24118746d2a0656fc90fb17 (patch)
tree1a011673c5907787810984f3a0ce12272b301f7d /test/.clang-tidy
parente792b20f6f150717bff92f1aea2c02459351766f (diff)
downloadsratom-e37f70b72357dc01d24118746d2a0656fc90fb17.tar.gz
sratom-e37f70b72357dc01d24118746d2a0656fc90fb17.tar.bz2
sratom-e37f70b72357dc01d24118746d2a0656fc90fb17.zip
Strengthen clang-tidy configuration
Diffstat (limited to 'test/.clang-tidy')
-rw-r--r--test/.clang-tidy5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy
index a271110..b2fbfe2 100644
--- a/test/.clang-tidy
+++ b/test/.clang-tidy
@@ -2,11 +2,12 @@
# SPDX-License-Identifier: 0BSD OR ISC
Checks: >
- -*-macro-to-enum,
-*-magic-numbers,
-bugprone-multi-level-implicit-pointer-conversion,
-bugprone-suspicious-realloc-usage,
-cert-err33-c,
- -performance-no-int-to-ptr,
-readability-identifier-length,
+CheckOptions:
+ - key: readability-function-cognitive-complexity.Threshold
+ value: '13'
InheritParentConfig: true