0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-09 10:43:19 -05:00

clang-tidy: Exclude performance-* checks rather including them

This commit is contained in:
Hennadii Stepanov 2023-03-26 20:18:13 +01:00
parent 2400437230
commit 03ec5b6f9c
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -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,