-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FactGenerator: Enable more clang-tidy checks
- Loading branch information
1 parent
18242b8
commit 69a00fe
Showing
15 changed files
with
167 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
# -*- yaml -*- | ||
# The following are disabled not because they are undesirable, but because they | ||
# are present in pre-existing code: | ||
# | ||
# -readability-convert-member-functions-to-static, | ||
# -readability-inconsistent-declaration-parameter-name, | ||
# -readability-magic-numbers, | ||
# -readability-suspicious-call-argument, | ||
--- | ||
|
||
Checks: > | ||
-*, | ||
modernize-*, | ||
performance-*, | ||
readability-const-return-type, | ||
readability-delete-null-pointer, | ||
readability-else-after-return, | ||
readability-non-const-parameter, | ||
readability-redundant-smartptr-get, | ||
readability-redundant-string-cstr, | ||
readability-string-compare | ||
readability-*, | ||
misc-static-assert, | ||
-readability-convert-member-functions-to-static, | ||
-readability-function-cognitive-complexity, | ||
-readability-identifier-length, | ||
-readability-inconsistent-declaration-parameter-name, | ||
-readability-magic-numbers, | ||
-readability-suspicious-call-argument, | ||
WarningsAsErrors: '*' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.