mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 11:13:23 -03:00
ci: enable self-assignment clang-tidy check
This commit is contained in:
parent
32b1d13792
commit
26a7f70b5d
1 changed files with 4 additions and 1 deletions
|
@ -6,6 +6,7 @@ bugprone-move-forwarding-reference,
|
||||||
bugprone-string-constructor,
|
bugprone-string-constructor,
|
||||||
bugprone-use-after-move,
|
bugprone-use-after-move,
|
||||||
bugprone-lambda-function-name,
|
bugprone-lambda-function-name,
|
||||||
|
bugprone-unhandled-self-assignment,
|
||||||
misc-unused-using-decls,
|
misc-unused-using-decls,
|
||||||
misc-no-recursion,
|
misc-no-recursion,
|
||||||
modernize-use-default-member-init,
|
modernize-use-default-member-init,
|
||||||
|
@ -23,8 +24,10 @@ readability-const-return-type,
|
||||||
readability-redundant-declaration,
|
readability-redundant-declaration,
|
||||||
readability-redundant-string-init,
|
readability-redundant-string-init,
|
||||||
'
|
'
|
||||||
|
HeaderFilterRegex: '.'
|
||||||
WarningsAsErrors: '*'
|
WarningsAsErrors: '*'
|
||||||
CheckOptions:
|
CheckOptions:
|
||||||
- key: performance-move-const-arg.CheckTriviallyCopyableMove
|
- key: performance-move-const-arg.CheckTriviallyCopyableMove
|
||||||
value: false
|
value: false
|
||||||
HeaderFilterRegex: '.'
|
- key: bugprone-unhandled-self-assignment.WarnOnlyIfThisHasSuspiciousField
|
||||||
|
value: false
|
||||||
|
|
Loading…
Add table
Reference in a new issue