Some checks failed
Bigfoot / Sonarqube (push) Has been cancelled
Bigfoot / Build & Test Debug (Unity Build: OFF) (push) Successful in 24s
Bigfoot / Build & Test Debug (Unity Build: ON) (push) Successful in 24s
Bigfoot / Build & Test RelWithDebInfo (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release (Unity Build: ON) (push) Has been cancelled
Bigfoot / Clang Format Checks (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo (Unity Build: OFF) (push) Has been cancelled
Reviewed-on: #6 Co-authored-by: Romain BOULLARD <romain.boullard@protonmail.com> Co-committed-by: Romain BOULLARD <romain.boullard@protonmail.com>
23 lines
487 B
YAML
23 lines
487 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
|
|
|
|
HeaderFilterRegex: '^(Bigfoot)/'
|
|
ExcludeHeaderFilterRegex: '_generated.*'
|
|
|
|
CheckOptions:
|
|
- key: readability-implicit-bool-conversion.AllowPointerConditions
|
|
value: true |