From bfa8275cfb0ff16657c93e66f02835bc119f1d68 Mon Sep 17 00:00:00 2001 From: Simon Giesecke Date: Thu, 9 Aug 2018 14:41:47 +0200 Subject: [PATCH] Added some more clang-tidy rule exclusions --- .clang-tidy | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.clang-tidy b/.clang-tidy index 307f03ec..cf282ab5 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -8,18 +8,23 @@ Checks: "*,\ -readability-named-parameter,\ -fuchsia-default-arguments,\ -google-readability-todo,\ +-google-runtime-int,\ -cppcoreguidelines-pro-type-member-init,\ -cppcoreguidelines-pro-type-static-cast-downcast,\ +# not applicable\ +-fuchsia-overloaded-operator,\ # not currently a coding convention, C++11-specific, but conceivable,\ -modernize-use-nullptr,\ -modernize-use-equals-default,\ -modernize-deprecated-headers,\ # not currently a coding convention, C++11-specific and hard to implement,\ +-hicpp-no-malloc,\ -modernize-pass-by-value,\ -modernize-loop-convert,\ -modernize-use-auto,\ -modernize-use-using,\ -modernize-return-braced-init-list,\ +-cppcoreguidelines-no-malloc,\ -cppcoreguidelines-owning-memory,\ -cppcoreguidelines-pro-type-union-access,\ -cppcoreguidelines-pro-bounds-array-to-pointer-decay,\