mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* fix(.clang-tidy): `Checks` is supposed to be a comma separated list of checks * fix clang-tidy warning * fix a few lint warnings * run clang-format * more format
12 lines
377 B
YAML
12 lines
377 B
YAML
# Clang-tidy configuration used on the whole code base, including tests and flight code
|
|
|
|
Checks: >
|
|
bugprone-unhandled-self-assignment,
|
|
modernize-deprecated-headers,
|
|
modernize-redundant-void-arg,
|
|
modernize-use-bool-literals,
|
|
modernize-use-nullptr,
|
|
readability-braces-around-statements,
|
|
-clang-analyzer-security.insecureAPI.rand
|
|
WarningsAsErrors: '*'
|