aboutsummaryrefslogtreecommitdiff
path: root/src/.clang-tidy
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-03-26 20:18:13 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-03-26 20:18:13 +0100
commit03ec5b6f9ca3af28c9ce25cf2393e28ae852d808 (patch)
tree96ca89dd920de8b3f0844be66b002fe294d3f1d1 /src/.clang-tidy
parent24004372302adfc0e7cb36f8db6830694bf050e9 (diff)
downloadbitcoin-03ec5b6f9ca3af28c9ce25cf2393e28ae852d808.tar.xz
clang-tidy: Exclude `performance-*` checks rather including them
Diffstat (limited to 'src/.clang-tidy')
-rw-r--r--src/.clang-tidy12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy
index 5a5a316953..39566c0cb7 100644
--- a/src/.clang-tidy
+++ b/src/.clang-tidy
@@ -5,13 +5,11 @@ bugprone-use-after-move,
misc-unused-using-decls,
modernize-use-default-member-init,
modernize-use-nullptr,
-performance-faster-string-find,
-performance-for-range-copy,
-performance-inefficient-vector-operation,
-performance-move-const-arg,
-performance-no-automatic-move,
-performance-type-promotion-in-math-fn
-performance-unnecessary-copy-initialization,
+performance-*,
+-performance-inefficient-string-concatenation,
+-performance-no-int-to-ptr,
+-performance-noexcept-move-constructor,
+-performance-unnecessary-value-param,
readability-const-return-type,
readability-redundant-declaration,
readability-redundant-string-init,