From ee90effd3a3e56473cef8674d1984e3ee51b8fcc Mon Sep 17 00:00:00 2001 From: Ankit Meel Date: Wed, 21 Oct 2020 12:57:08 +0530 Subject: Clang-tidy: disable new warnings. Until it is decided whether to work on, or ignore these warning, disable them. See T78535 Reviewed By: sergey Differential Revision: https://developer.blender.org/D9281 --- .clang-tidy | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.clang-tidy') diff --git a/.clang-tidy b/.clang-tidy index 8e76892ec5a..995f585cda1 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -18,6 +18,10 @@ Checks: > -readability-redundant-member-init, -readability-use-anyofallof, + -readability-named-parameter, + -readability-function-cognitive-complexity, + -readability-redundant-string-init, + bugprone-*, -bugprone-narrowing-conversions, -bugprone-unhandled-self-assignment, @@ -28,4 +32,7 @@ Checks: > -bugprone-sizeof-expression, -bugprone-integer-division, + -bugprone-exception-escape, + -bugprone-redundant-branch-condition, + WarningsAsErrors: '*' -- cgit v1.2.3