Some checks failed
Bigfoot / Build & Test Debug (push) Successful in 1m21s
Bigfoot / Build & Test RelWithDebInfo (push) Successful in 1m0s
Bigfoot / Build & Test Release (push) Successful in 31s
Bigfoot / Clang Format Checks (push) Failing after 8s
Bigfoot / Sonarqube (push) Successful in 52s
22 lines
454 B
YAML
22 lines
454 B
YAML
# .clang-tidy
|
|
---
|
|
Checks: >
|
|
-*,
|
|
bugprone-*,
|
|
clang-analyzer-*,
|
|
cppcoreguidelines-*,
|
|
modernize-*,
|
|
performance-*,
|
|
readability-*,
|
|
portability-*,
|
|
|
|
-modernize-use-trailing-return-type,
|
|
-readability-avoid-const-params-in-decls,
|
|
-cppcoreguidelines-macro-usage,
|
|
-cppcoreguidelines-avoid-do-while
|
|
|
|
ExcludeHeaderFilterRegex: '_generated.*'
|
|
|
|
CheckOptions:
|
|
- key: readability-implicit-bool-conversion.AllowPointerConditions
|
|
value: true |