22 lines
444 B
YAML
22 lines
444 B
YAML
---
|
|
Checks: >
|
|
-*,
|
|
bugprone-*,
|
|
concurrency-*,
|
|
misc-*,
|
|
modernize-*,
|
|
performance-*,
|
|
readability-*,
|
|
portability-*,
|
|
-readability-braces-around-statements,
|
|
-readability-implicit-bool-conversion
|
|
|
|
WarningsAsErrors: ""
|
|
|
|
CheckOptions:
|
|
- key: readability-identifier-naming.VariableCase
|
|
value: lower_case
|
|
- key: readability-identifier-naming.FunctionCase
|
|
value: lower_case
|
|
---
|
|
|