Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-07-15 15:23:51 +0300
committerJacques Lucke <jacques@blender.org>2020-07-15 15:24:24 +0300
commitefc6f6e1ae714f7471ebefbfaa21699214111d81 (patch)
tree72a1259005d0a60008de8d55da067dfa883a0cce /.clang-tidy
parent5a11c8ba244d966813ff491d9e295f13b7d7d248 (diff)
Clang-Tidy: ignore some newer checks
Those checks have been added to clang tidy within the last year. They fail when I use a clang tidy version I built from source. Reviewers: sergey Differential Revision: https://developer.blender.org/D8302
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy2
1 files changed, 2 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index ad8a89cab87..7cf2830d438 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -23,12 +23,14 @@ Checks: >
-readability-static-accessed-through-instance,
-readability-redundant-declaration,
-readability-qualified-auto,
+ -readability-use-anyofallof,
bugprone-*,
-bugprone-narrowing-conversions,
-bugprone-unhandled-self-assignment,
-bugprone-branch-clone,
-bugprone-macro-parentheses,
+ -bugprone-reserved-identifier,
-bugprone-sizeof-expression,
-bugprone-integer-division,