diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/.clang-tidy | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy index ed1198d..2967334 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -2,7 +2,6 @@ # SPDX-License-Identifier: 0BSD OR ISC Checks: > - -*-macro-to-enum, -*-magic-numbers, -*-narrowing-conversions, -bugprone-easily-swappable-parameters, @@ -11,8 +10,9 @@ Checks: > -clang-analyzer-unix.Malloc, -hicpp-signed-bitwise, -misc-no-recursion, - -performance-no-int-to-ptr, - -readability-function-cognitive-complexity, -readability-identifier-length, -readability-redundant-casting, +CheckOptions: + - key: readability-function-cognitive-complexity.Threshold + value: '75' InheritParentConfig: true |