diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-11-12 16:36:23 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-11-12 22:55:31 (GMT) |
commit | 6a83417908f77051344475d419a92c2ef7a47ee6 (patch) | |
tree | c728c606e6e103e480a285f4b24887e71eb4a79d /.clang-tidy | |
parent | d2b648ec4c09d91f57ee73838d284b67366123f6 (diff) | |
download | CMake-6a83417908f77051344475d419a92c2ef7a47ee6.zip CMake-6a83417908f77051344475d419a92c2ef7a47ee6.tar.gz CMake-6a83417908f77051344475d419a92c2ef7a47ee6.tar.bz2 |
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-tidy | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 5e513fb..11e1726 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: |