diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2021-07-14 09:59:56 +0300 |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2021-07-14 09:59:56 +0300 |
| commit | 95b8a56dd42da067b56e37111577427518d825fb (patch) | |
| tree | 2a5d20d061f27e510bd7bd4e1af1621ad8a6d4b0 /.clang-tidy | |
| parent | 239b5547eae64d05f5d7544f0e11bfb877a75a02 (diff) | |
| parent | a07b6382aef3c30d8ea8f28fcc3cc880d7afd747 (diff) | |
Merge branch 'develop' into fix_touchevent_tap
Diffstat (limited to '.clang-tidy')
| -rw-r--r-- | .clang-tidy | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.clang-tidy b/.clang-tidy index 8a7d38f0..8b9e7c0c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,4 +1,5 @@ Checks: '*, + -altera-unroll-loops, -llvmlibc-callee-namespace, -llvm-header-guard, -llvm-namespace-comment, @@ -14,17 +15,20 @@ Checks: '*, -cppcoreguidelines-avoid-magic-numbers, -cppcoreguidelines-avoid-non-const-global-variables, -cppcoreguidelines-avoid-c-arrays, + -cppcoreguidelines-special-member-functions, -readability-magic-numbers, -readability-uppercase-literal-suffix, -modernize-use-trailing-return-type, -modernize-avoid-c-arrays, - -hicpp-signed-bitwise, - -hicpp-no-assembler, -hicpp-avoid-c-arrays, -hicpp-uppercase-literal-suffix, + -hicpp-vararg, + -hicpp-no-assembler, -hicpp-no-array-decay, + -hicpp-signed-bitwise, + -hicpp-special-member-functions, -cert-err58-cpp, -cert-err60-cpp' CheckOptions: - key: readability-function-cognitive-complexity.Threshold - value: 100
\ No newline at end of file + value: 100 |
