2022-03-05 17:17:07 +01:00
|
|
|
---
|
2022-06-25 01:14:59 +02:00
|
|
|
Checks: >
|
|
|
|
|
bugprone-macro-parentheses,
|
|
|
|
|
bugprone-macro-repeated-side-effects,
|
2023-01-21 16:39:17 +01:00
|
|
|
modernize-avoid-c-arrays,
|
|
|
|
|
modernize-loop-convert,
|
2022-06-25 01:17:35 +02:00
|
|
|
modernize-redundant-void-arg,
|
2023-01-21 16:39:17 +01:00
|
|
|
modernize-use-auto,
|
2022-06-25 01:17:35 +02:00
|
|
|
modernize-use-bool-literals,
|
|
|
|
|
modernize-use-emplace,
|
|
|
|
|
modernize-use-equals-default,
|
|
|
|
|
modernize-use-equals-delete,
|
2022-06-25 01:14:59 +02:00
|
|
|
modernize-use-override,
|
2023-01-21 16:39:17 +01:00
|
|
|
modernize-use-using,
|
2022-06-25 01:17:35 +02:00
|
|
|
performance-trivially-destructible,
|
2023-01-21 16:39:17 +01:00
|
|
|
readability-braces-around-statements,
|
2023-01-01 02:08:29 +01:00
|
|
|
readability-const-return-type,
|
2022-06-25 01:14:59 +02:00
|
|
|
readability-identifier-naming,
|
|
|
|
|
readability-misleading-indentation,
|
2023-01-21 16:39:17 +01:00
|
|
|
readability-simplify-boolean-expr
|
2022-03-05 17:17:07 +01:00
|
|
|
WarningsAsErrors: ''
|
|
|
|
|
HeaderFilterRegex: '' # don't show errors from headers
|
|
|
|
|
FormatStyle: none
|
|
|
|
|
User: user
|
|
|
|
|
CheckOptions:
|
|
|
|
|
- key: readability-identifier-naming.ClassCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
- key: readability-identifier-naming.EnumCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
- key: readability-identifier-naming.TypedefCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
- key: readability-identifier-naming.UnionCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
- key: readability-identifier-naming.StructCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
- key: readability-identifier-naming.UnionCase
|
|
|
|
|
value: CamelCase
|
|
|
|
|
# not yet working, as it currently applies both for static and object members
|
|
|
|
|
# - key: readability-identifier-naming.MemberPrefix
|
|
|
|
|
# value: 'm_'
|
|
|
|
|
# currently only working for local static variables:
|
|
|
|
|
- key: readability-identifier-naming.StaticVariablePrefix
|
|
|
|
|
value: 's_'
|
|
|
|
|
# not yet working
|
|
|
|
|
# - key: readability-identifier-naming.VariableCase
|
|
|
|
|
# value: camelBack
|
|
|
|
|
- key: readability-identifier-naming.FunctionCase
|
|
|
|
|
value: camelBack
|
|
|
|
|
...
|
|
|
|
|
|