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:
authorAnkit Meel <ankitm>2020-10-21 10:27:08 +0300
committerAnkit Meel <ankitjmeel@gmail.com>2020-10-21 10:28:39 +0300
commitee90effd3a3e56473cef8674d1984e3ee51b8fcc (patch)
treec044fd5aafbb1697f887b3b74617d1f04889616a /.clang-tidy
parenta8f44a479911873b80a9cfe3001ec1750082e24c (diff)
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
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy7
1 files changed, 7 insertions, 0 deletions
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: '*'