diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-26 11:04:56 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-26 11:04:56 +0200 |
commit | c7a94e51b2e3d8162232aaef3d0d9f14330ea165 (patch) | |
tree | de32c1c77ab18f3a852ea66a0e13b455a2492c93 /.clang-tidy | |
parent | ea0fe4748db634d4f45805c677572db6c3b09f79 (diff) |
clang-tidy: update
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 40bed41b..2ddc8e9a 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -45,6 +45,7 @@ clang-analyzer-deadcode.DeadStores, -hicpp-exception-baseclass, -hicpp-explicit-conversions, -hicpp-function-size, +-hicpp-invalid-access-moved, -hicpp-member-init, -hicpp-move-const-arg, -hicpp-named-parameter, @@ -74,6 +75,7 @@ modernize-use-equals-default, -readability-braces-around-statements, -readability-else-after-return, readability-function-cognitive-complexity, +-readability-function-size, -readability-identifier-length, -readability-implicit-bool-conversion, -readability-inconsistent-declaration-parameter-name, @@ -112,5 +114,9 @@ CheckOptions: value: '10' - key: readability-function-cognitive-complexity.IgnoreMacros value: '1' + - key: readability-function-cognitive-complexity.DescribeBasicIncrements + value: '1' + - key: misc-const-correctness.AnalyzeValues + value: '0' # vim: ft=yaml |