diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-08 15:47:31 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-13 15:26:02 (GMT) |
commit | 4e9e7c713e01284d48fff8f3f18b3ffb08b6eaf9 (patch) | |
tree | f7b405d7494344a5e914c18a54e048c825aab4fb /.clang-tidy | |
parent | b108c9fdaf2d36c5724982549fddcf46a2dc8800 (diff) | |
download | CMake-4e9e7c713e01284d48fff8f3f18b3ffb08b6eaf9.zip CMake-4e9e7c713e01284d48fff8f3f18b3ffb08b6eaf9.tar.gz CMake-4e9e7c713e01284d48fff8f3f18b3ffb08b6eaf9.tar.bz2 |
clang-tidy: ignore making members static
CMake has lots of instances of this which is outside the scope of this
topic right now.
Diffstat (limited to '.clang-tidy')
-rw-r--r-- | .clang-tidy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.clang-tidy b/.clang-tidy index 510cb9e..10819ef 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -17,6 +17,7 @@ modernize-*,\ -modernize-use-transparent-functors,\ performance-*,\ readability-*,\ +-readability-convert-member-functions-to-static,\ -readability-function-size,\ -readability-identifier-naming,\ -readability-implicit-bool-conversion,\ |