summaryrefslogtreecommitdiffstats
path: root/.clang-tidy
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-12-10 12:11:49 -0500
committerDavid Robillard <d@drobilla.net>2022-12-11 13:09:54 -0500
commit9fb939e1a9fb1b0f13e1818e1c81bc15b70e8c64 (patch)
tree9cb043a9c67fb9776085a97d615cee17f3793a50 /.clang-tidy
parent07248d1c3ea7cb071aafddebf0ba98221baa08d0 (diff)
downloadsratom-9fb939e1a9fb1b0f13e1818e1c81bc15b70e8c64.tar.gz
sratom-9fb939e1a9fb1b0f13e1818e1c81bc15b70e8c64.tar.bz2
sratom-9fb939e1a9fb1b0f13e1818e1c81bc15b70e8c64.zip
Make clang-tidy configuration clean when run via meson
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy24
1 files changed, 7 insertions, 17 deletions
diff --git a/.clang-tidy b/.clang-tidy
index cbea2d8..1a15411 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -3,24 +3,14 @@
Checks: >
*,
- -*-magic-numbers,
- -*-narrowing-conversions,
- -*-uppercase-literal-suffix,
-altera-*,
- -bugprone-easily-swappable-parameters,
- -bugprone-macro-parentheses,
- -bugprone-suspicious-string-compare,
- -cert-err33-c,
- -cert-err34-c,
- -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
- -clang-analyzer-unix.Malloc,
- -hicpp-signed-bitwise,
- -llvm-header-guard,
+ -clang-diagnostic-unused-macros,
-llvmlibc-*,
- -misc-no-recursion,
- -performance-no-int-to-ptr,
- -readability-function-cognitive-complexity,
- -readability-identifier-length,
+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: '.*'
+HeaderFilterRegex: '.*/sratom/[^/]+.h'
FormatStyle: file