summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-02-01 16:21:06 -0500
committerBrad King <brad.king@kitware.com>2022-02-01 17:20:29 -0500
commit89700cba9a762548f11918fa711f7de45d70a575 (patch)
tree6cf4e695a334afaba8c7a4925d332a1abade3ae2 /.clang-tidy
parentefe3af0119d42b04c6799531dd884afd09af586d (diff)
downloadcmake-89700cba9a762548f11918fa711f7de45d70a575.tar.gz
clang-tidy: ignore warnings new in version 13
These warnings can be fixed in the future. Ignore them for now.
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy5
1 files changed, 5 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index dda86b079c..7b8d20027e 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -1,6 +1,8 @@
---
Checks: "-*,\
bugprone-*,\
+-bugprone-easily-swappable-parameters,\
+-bugprone-implicit-widening-of-multiplication-result,\
-bugprone-macro-parentheses,\
-bugprone-misplaced-widening-cast,\
-bugprone-narrowing-conversions,\
@@ -12,6 +14,7 @@ misc-*,\
-misc-static-assert,\
modernize-*,\
-modernize-avoid-c-arrays,\
+-modernize-return-braced-init-list,\
-modernize-use-nodiscard,\
-modernize-use-noexcept,\
-modernize-use-trailing-return-type,\
@@ -27,6 +30,8 @@ readability-*,\
-readability-magic-numbers,\
-readability-named-parameter,\
-readability-redundant-declaration,\
+-readability-redundant-member-init,\
+-readability-suspicious-call-argument,\
-readability-uppercase-literal-suffix,\
"
HeaderFilterRegex: 'Source/cm[^/]*\.(h|hxx|cxx)$'