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:
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy17
1 files changed, 16 insertions, 1 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 9a1392407b9..10738f574d6 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -15,7 +15,6 @@ Checks: >
-readability-misleading-indentation,
- -readability-redundant-member-init,
-readability-use-anyofallof,
-readability-function-cognitive-complexity,
@@ -33,4 +32,20 @@ Checks: >
-bugprone-exception-escape,
-bugprone-redundant-branch-condition,
+ modernize-*,
+ -modernize-use-auto,
+ -modernize-use-trailing-return-type,
+ -modernize-deprecated-headers,
+ -modernize-avoid-c-arrays,
+ -modernize-use-equals-default,
+ -modernize-use-nodiscard,
+ -modernize-use-using,
+ -modernize-loop-convert,
+ -modernize-pass-by-value,
+ -modernize-use-default-member-init,
+ -modernize-raw-string-literal,
+ -modernize-avoid-bind,
+ -modernize-use-override,
+ -modernize-use-transparent-functors,
+
WarningsAsErrors: '*'