[Bf-blender-cvs] [763b8f14237] master: Clang-tidy: Ignore variable name length and .c/.cc include warnings

Sebastian Parborg noreply at git.blender.org
Fri May 6 15:27:01 CEST 2022


Commit: 763b8f14237fd534fc9ebd3a8ed82c57ca8b5463
Author: Sebastian Parborg
Date:   Fri May 6 14:47:45 2022 +0200
Branches: master
https://developer.blender.org/rB763b8f14237fd534fc9ebd3a8ed82c57ca8b5463

Clang-tidy: Ignore variable name length and .c/.cc include warnings

After some internal discussion it was decided that we should ignore name
variable length tidy warnings. Otherwise we would have warnings for
every variable that is under three characters long.

Additionally we will also ignore any warnings when including non header
files as the Unity library in our build system uses this excessively

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

M	.clang-tidy

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

diff --git a/.clang-tidy b/.clang-tidy
index bbd51291918..42ce52d58ca 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -16,10 +16,9 @@ Checks:  >
   -readability-make-member-function-const,
   -readability-suspicious-call-argument,
   -readability-redundant-member-init,
-
   -readability-misleading-indentation,
-
   -readability-use-anyofallof,
+  -readability-identifier-length,
 
   -readability-function-cognitive-complexity,
 
@@ -37,6 +36,8 @@ Checks:  >
 
   -bugprone-redundant-branch-condition,
 
+  -bugprone-suspicious-include,
+
   modernize-*,
   -modernize-use-auto,
   -modernize-use-trailing-return-type,



More information about the Bf-blender-cvs mailing list