summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-28 19:03:57 -0400
committerDavid Robillard <d@drobilla.net>2022-06-28 19:09:35 -0400
commit95391e9a8add9d75ee5e1888a0ea84b27ba4cf2a (patch)
tree86d2b40d02b884f50bf16504c129a2bf70e396dc
parentfcb82f18e7db39aeee726c41007845d9710a9cb8 (diff)
downloadzix-95391e9a8add9d75ee5e1888a0ea84b27ba4cf2a.tar.gz
zix-95391e9a8add9d75ee5e1888a0ea84b27ba4cf2a.tar.bz2
zix-95391e9a8add9d75ee5e1888a0ea84b27ba4cf2a.zip
Simplify clang-tidy configuration
-rw-r--r--.clang-tidy15
-rw-r--r--benchmark/.clang-tidy1
-rw-r--r--test/.clang-tidy2
3 files changed, 0 insertions, 18 deletions
diff --git a/.clang-tidy b/.clang-tidy
deleted file mode 100644
index 8cec0ea..0000000
--- a/.clang-tidy
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 2020-2022 David Robillard <d@drobilla.net>
-# SPDX-License-Identifier: CC0-1.0 OR ISC
-
-Checks: >
- *,
- -*-magic-numbers,
- -altera-*,
- -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
- -hicpp-multiway-paths-covered,
- -llvmlibc-*,
- -misc-no-recursion,
- -readability-function-cognitive-complexity,
-WarningsAsErrors: '*'
-HeaderFilterRegex: '.*'
-FormatStyle: file
diff --git a/benchmark/.clang-tidy b/benchmark/.clang-tidy
index 01a5eb7..e26e521 100644
--- a/benchmark/.clang-tidy
+++ b/benchmark/.clang-tidy
@@ -12,7 +12,6 @@ Checks: >
-llvm-header-guard,
-llvmlibc-*,
-performance-no-int-to-ptr,
- -readability-function-cognitive-complexity,
WarningsAsErrors: '*'
HeaderFilterRegex: '.*'
FormatStyle: file
diff --git a/test/.clang-tidy b/test/.clang-tidy
index ac418d7..445c1ca 100644
--- a/test/.clang-tidy
+++ b/test/.clang-tidy
@@ -5,7 +5,6 @@ Checks: >
*,
-*-magic-numbers,
-altera-*,
- -android-cloexec-fopen,
-bugprone-easily-swappable-parameters,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-cppcoreguidelines-avoid-non-const-global-variables,
@@ -13,7 +12,6 @@ Checks: >
-hicpp-multiway-paths-covered,
-llvm-header-guard,
-llvmlibc-*,
- -misc-no-recursion,
-performance-no-int-to-ptr,
-readability-function-cognitive-complexity,
WarningsAsErrors: '*'