diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-01-17 13:11:19 +0000 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-01-17 15:40:29 +0000 |
commit | 06fc29326b6c17204b3ed179cdb07071ac18183d (patch) | |
tree | 32f237509982f07c94daaafbee87e22904a6c496 /src | |
parent | 635f1900d048e41d18cc1df7e8305a5f397c87a3 (diff) |
refactor: Remove duplication of clang-tidy's check names
Diffstat (limited to 'src')
-rw-r--r-- | src/.clang-tidy | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/.clang-tidy b/src/.clang-tidy index bcce543114..b2e6914548 100644 --- a/src/.clang-tidy +++ b/src/.clang-tidy @@ -12,19 +12,7 @@ performance-unnecessary-copy-initialization, readability-redundant-declaration, readability-redundant-string-init, ' -WarningsAsErrors: ' -bugprone-argument-comment, -bugprone-use-after-move, -misc-unused-using-decls, -modernize-use-default-member-init, -modernize-use-nullptr, -performance-for-range-copy, -performance-move-const-arg, -performance-no-automatic-move, -performance-unnecessary-copy-initialization, -readability-redundant-declaration, -readability-redundant-string-init, -' +WarningsAsErrors: '*' CheckOptions: - key: performance-move-const-arg.CheckTriviallyCopyableMove value: false |