diff --git a/.clang-tidy b/.clang-tidy index a094b38..71ae3bb 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -1,3 +1,4 @@ +--- Checks: '-*, clang-analyzer-*, @@ -17,3 +18,4 @@ Checks: '-*, -readability-redundant-access-specifiers, -readability-use-anyofallof, ' +... diff --git a/untests/.clang-tidy b/untests/.clang-tidy new file mode 100644 index 0000000..7c32625 --- /dev/null +++ b/untests/.clang-tidy @@ -0,0 +1,17 @@ +--- +Checks: '-*, + + clang-analyzer-*, + + concurrency-*, + + cppcoreguidelines-*, + -cppcoreguidelines-avoid-magic-numbers, + -cppcoreguidelines-avoid-non-const-global-variables, + + modernize-*, + -modernize-use-trailing-return-type, + + portability-*, + ' +...