forked from Project-OSRM/osrm-backend
-
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.
Configure clang-tidy job on CI (Project-OSRM#6261)
- Loading branch information
1 parent
b275022
commit f3f7cc3
Showing
22 changed files
with
138 additions
and
13 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,4 +1,85 @@ | ||
--- | ||
Checks: '-clang-analyzer-*,google-*,llvm-*,misc-*,readability-*,-google-build-explicit-make-pair,-google-explicit-constructor,-google-readability-braces-around-statements,-google-readability-casting,-google-readability-namespace-comments,-google-readability-function,-google-readability-todo,-google-runtime-int,-llvm-namespace-comment,-llvm-header-guard,-llvm-twine-local,-misc-argument-comment,-readability-braces-around-statements,-readability-identifier-naming' | ||
... | ||
Checks: > | ||
bugprone-*, | ||
-bugprone-narrowing-conversions, | ||
-bugprone-easily-swappable-parameters, | ||
-bugprone-branch-clone, | ||
-bugprone-misplaced-widening-cast, | ||
-bugprone-exception-escape, | ||
-bugprone-implicit-widening-of-multiplication-result, | ||
-bugprone-integer-division, | ||
-bugprone-reserved-identifier, | ||
-bugprone-macro-parentheses, | ||
-bugprone-unhandled-self-assignment, | ||
-bugprone-suspicious-missing-comma, | ||
-bugprone-forward-declaration-namespace, | ||
-bugprone-sizeof-expression, | ||
-clang-analyzer-*, | ||
-clang-diagnostic-unused-local-typedef, | ||
-clang-diagnostic-deprecated-declarations, | ||
google-*, | ||
-google-build-explicit-make-pair, | ||
-google-build-using-namespace, | ||
-google-explicit-constructor, | ||
-google-default-arguments, | ||
-google-readability-braces-around-statements, | ||
-google-readability-casting, | ||
-google-readability-namespace-comments, | ||
-google-readability-function, | ||
-google-readability-todo, | ||
-google-runtime-int, | ||
-google-build-namespaces, | ||
-google-global-names-in-headers, | ||
-google-runtime-references, | ||
-google-readability-function-size, | ||
llvm-*, | ||
-llvm-namespace-comment, | ||
-llvm-qualified-auto, | ||
-llvm-include-order, | ||
-llvm-else-after-return, | ||
-llvm-header-guard, | ||
-llvm-twine-local, | ||
misc-*, | ||
-misc-argument-comment, | ||
-misc-non-private-member-variables-in-classes, | ||
-misc-unused-using-decls, | ||
-misc-unconventional-assign-operator, | ||
-misc-redundant-expression, | ||
-misc-no-recursion, | ||
-misc-misplaced-const, | ||
-misc-definitions-in-headers, | ||
-misc-unused-alias-decls, | ||
-misc-unused-parameters, | ||
readability-*, | ||
-readability-avoid-const-params-in-decls, | ||
-readability-braces-around-statements, | ||
-readability-container-size-empty, | ||
-readability-convert-member-functions-to-static, | ||
-readability-const-return-type, | ||
-readability-function-cognitive-complexity, | ||
-readability-function-size, | ||
-readability-identifier-naming, | ||
-readability-implicit-bool-conversion, | ||
-readability-magic-numbers, | ||
-readability-else-after-return, | ||
-readability-inconsistent-declaration-parameter-name, | ||
-readability-isolate-declaration, | ||
-readability-redundant-declaration, | ||
-readability-uppercase-literal-suffix, | ||
-readability-named-parameter, | ||
-readability-qualified-auto, | ||
-readability-suspicious-call-argument, | ||
-readability-redundant-access-specifiers, | ||
-readability-redundant-member-init, | ||
-readability-static-definition-in-anonymous-namespace, | ||
-readability-use-anyofallof, | ||
-readability-simplify-boolean-expr, | ||
-readability-make-member-function-const, | ||
-readability-redundant-string-init, | ||
-readability-non-const-parameter, | ||
-readability-static-accessed-through-instance | ||
WarningsAsErrors: '*' | ||
HeaderFilterRegex: '.*' | ||
|
||
|
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
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
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
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