diff --git a/.clang-tidy b/.clang-tidy index f79c24c..aaa1e61 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,5 +1,5 @@ # -*- mode: conf; fill-column: 100; -*- -# Written for clang-tidy 11. +# Written for clang-tidy 14. --- Checks: '*, @@ -29,7 +29,9 @@ Checks: '*, -fuchsia-multiple-inheritance, -llvmlibc*, -cppcoreguidelines-avoid-non-const-global-variables, - -cert-*-c' + -cert-*-c, + -abseil-string-find-*, + -altera-*' FormatStyle: file # Use .clang-format. CheckOptions: # ↓ Clashes with static private member prefix. (static int _var;) ↓ - { key: readability-identifier-naming.VariableCase, value: lower_case } @@ -44,5 +46,6 @@ CheckOptions: # ↓ Clashes with static private member prefix. (static int _va - { key: readability-identifier-naming.EnumCase, value: lower_case } - { key: readability-identifier-naming.FunctionCase, value: lower_case } - { key: readability-identifier-naming.ParameterCase, value: lower_case } - - { key: readability-function-cognitive-complexity.Threshold, value: 30 } ... + +# vim: set et tw=100: