summaryrefslogtreecommitdiff
path: root/.clang-tidy
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2020-11-12 11:36:23 -0500
committerBen Boeckel <ben.boeckel@kitware.com>2020-11-12 17:55:31 -0500
commit6a83417908f77051344475d419a92c2ef7a47ee6 (patch)
treec728c606e6e103e480a285f4b24887e71eb4a79d /.clang-tidy
parentd2b648ec4c09d91f57ee73838d284b67366123f6 (diff)
downloadcmake-6a83417908f77051344475d419a92c2ef7a47ee6.tar.gz
clang-tidy: ignore new warnings from newer versions
These warnings can be fixed in the future, but are ignored for now.
Diffstat (limited to '.clang-tidy')
-rw-r--r--.clang-tidy11
1 files changed, 11 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 5e513fbd1b..11e1726325 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -4,6 +4,9 @@ bugprone-*,\
-bugprone-macro-parentheses,\
-bugprone-misplaced-widening-cast,\
-bugprone-narrowing-conversions,\
+-bugprone-reserved-identifier,\
+-bugprone-signed-char-misuse,\
+-bugprone-suspicious-include,\
-bugprone-too-small-loop-variable,\
google-readability-casting,\
misc-*,\
@@ -17,6 +20,8 @@ modernize-*,\
-modernize-use-trailing-return-type,\
-modernize-use-transparent-functors,\
performance-*,\
+-performance-no-automatic-move,\
+-performance-trivially-destructible,\
readability-*,\
-readability-convert-member-functions-to-static,\
-readability-function-size,\
@@ -24,9 +29,15 @@ readability-*,\
-readability-implicit-bool-conversion,\
-readability-inconsistent-declaration-parameter-name,\
-readability-magic-numbers,\
+-readability-make-member-function-const,\
-readability-named-parameter,\
+-readability-qualified-auto,\
+-readability-redundant-access-specifiers,\
-readability-redundant-declaration,\
+-readability-redundant-string-init,\
+-readability-simplify-boolean-expr,\
-readability-uppercase-literal-suffix,\
+-readability-use-anyofallof,\
"
HeaderFilterRegex: 'Source/cm[^/]*\.(h|hxx|cxx)$'
CheckOptions: