[Bf-blender-cvs] [ee90effd3a3] master: Clang-tidy: disable new warnings.

Ankit Meel noreply at git.blender.org
Wed Oct 21 09:29:04 CEST 2020


Commit: ee90effd3a3e56473cef8674d1984e3ee51b8fcc
Author: Ankit Meel
Date:   Wed Oct 21 12:57:08 2020 +0530
Branches: master
https://developer.blender.org/rBee90effd3a3e56473cef8674d1984e3ee51b8fcc

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

===================================================================

M	.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: '*'



More information about the Bf-blender-cvs mailing list