diff options
Diffstat (limited to 'src/.clang-tidy')
-rw-r--r-- | src/.clang-tidy | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy new file mode 100644 index 0000000..5bf8761 --- /dev/null +++ b/src/.clang-tidy @@ -0,0 +1,23 @@ +# Copyright 2020-2022 David Robillard <d@drobilla.net> +# SPDX-License-Identifier: 0BSD OR ISC + +Checks: > + -*-magic-numbers, + -*-uppercase-literal-suffix, + -android-cloexec-fopen, + -bugprone-branch-clone, + -bugprone-narrowing-conversions, + -bugprone-suspicious-string-compare, + -cert-err33-c, + -cert-err34-c, + -clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling, + -clang-analyzer-valist.Uninitialized, + -concurrency-mt-unsafe, + -cppcoreguidelines-narrowing-conversions, + -google-readability-todo, + -hicpp-multiway-paths-covered, + -hicpp-signed-bitwise, + -readability-function-cognitive-complexity, + -readability-identifier-length, + -readability-suspicious-call-argument, +InheritParentConfig: true |