Skip to content

Commit 03ec5b6

Browse files
committed
clang-tidy: Exclude performance-* checks rather including them
1 parent 2400437 commit 03ec5b6

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/.clang-tidy

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ bugprone-use-after-move,
55
misc-unused-using-decls,
66
modernize-use-default-member-init,
77
modernize-use-nullptr,
8-
performance-faster-string-find,
9-
performance-for-range-copy,
10-
performance-inefficient-vector-operation,
11-
performance-move-const-arg,
12-
performance-no-automatic-move,
13-
performance-type-promotion-in-math-fn
14-
performance-unnecessary-copy-initialization,
8+
performance-*,
9+
-performance-inefficient-string-concatenation,
10+
-performance-no-int-to-ptr,
11+
-performance-noexcept-move-constructor,
12+
-performance-unnecessary-value-param,
1513
readability-const-return-type,
1614
readability-redundant-declaration,
1715
readability-redundant-string-init,

0 commit comments

Comments
 (0)