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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-07-03 11:22:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-07-03 11:23:44 +0300
commitdfdd23bae6b3361111ded70c811a7ec86f4d76a9 (patch)
tree45bac3592a0ad477b1c96e3e445354c2df05374c /.clang-tidy
parent9ea5469178a9a4ab5d4048f7aaf18af85a8265a3 (diff)
Clang-Tidy: Silence warning affecting newer code
For now Clang-Tidy should be passable with the codebase as is. This warning will be addressed as quality day task.
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 7017ce9e97d..f4b7bc3e3be 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -30,6 +30,7 @@ Checks: >
-readability-redundant-string-cstr,
-readability-static-accessed-through-instance,
-readability-redundant-declaration,
+ -readability-qualified-auto,
bugprone-*,
-bugprone-narrowing-conversions,
@@ -50,5 +51,6 @@ Checks: >
-bugprone-parent-virtual-call,
-bugprone-infinite-loop,
-bugprone-copy-constructor-init,
+ -bugprone-lambda-function-name,
WarningsAsErrors: '*'