forked from acts-project/acts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: clean up clang-tidy (acts-project#3145)
- Sort alphabetically - Add missing values to `.clang-tidy` - Reformat for readability and to keep track of changes In a dream world, we have just a single place, where we can manage the checks.
- Loading branch information
1 parent
5351471
commit e4bc565
Showing
3 changed files
with
48 additions
and
29 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
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,21 +1,21 @@ | ||
limits: | ||
"readability-inconsistent-declaration-parameter-name": 0 | ||
"readability-named-parameter": 0 | ||
"readability-container-size-empty": 0 | ||
"readability-braces-around-statements": 0 | ||
"readability-implicit-bool-cast": 0 | ||
"readability-implicit-bool-conversion": 0 | ||
"clang-analyzer-optin.cplusplus.UninitializedObject": 0 | ||
"clang-diagnostic-error": 0 | ||
"cppcoreguidelines-init-variables": 0 | ||
"cppcoreguidelines-pro-type-member-init": 0 | ||
"modernize-concat-nested-namespaces": 0 | ||
"modernize-use-using": 0 | ||
"modernize-use-override": 0 | ||
"modernize-use-equals-default" : 0 | ||
"modernize-use-equals-default": 0 | ||
"modernize-use-default-member-init": 0 | ||
"modernize-use-nullptr": 0 | ||
"performance-unnecessary-value-param": 0 | ||
"performance-move-const-arg": 0 | ||
"modernize-use-override": 0 | ||
"modernize-use-using": 0 | ||
"performance-for-range-copy": 0 | ||
"cppcoreguidelines-pro-type-member-init": 0 | ||
"cppcoreguidelines-init-variables": 0 | ||
"clang-analyzer-optin.cplusplus.UninitializedObject": 0 | ||
"clang-diagnostic-error": 0 | ||
"performance-move-const-arg": 0 | ||
"performance-unnecessary-value-param": 0 | ||
"readability-braces-around-statements": 0 | ||
"readability-container-size-empty": 0 | ||
"readability-implicit-bool-cast": 0 | ||
"readability-implicit-bool-conversion": 0 | ||
"readability-inconsistent-declaration-parameter-name": 0 | ||
"readability-named-parameter": 0 | ||
"readability-operators-representation": 0 |
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