We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b1d13 commit 26a7f70Copy full SHA for 26a7f70
src/.clang-tidy
@@ -6,6 +6,7 @@ bugprone-move-forwarding-reference,
6
bugprone-string-constructor,
7
bugprone-use-after-move,
8
bugprone-lambda-function-name,
9
+bugprone-unhandled-self-assignment,
10
misc-unused-using-decls,
11
misc-no-recursion,
12
modernize-use-default-member-init,
@@ -23,8 +24,10 @@ readability-const-return-type,
23
24
readability-redundant-declaration,
25
readability-redundant-string-init,
26
'
27
+HeaderFilterRegex: '.'
28
WarningsAsErrors: '*'
29
CheckOptions:
30
- key: performance-move-const-arg.CheckTriviallyCopyableMove
31
value: false
-HeaderFilterRegex: '.'
32
+ - key: bugprone-unhandled-self-assignment.WarnOnlyIfThisHasSuspiciousField
33
+ value: false
0 commit comments