|
| 1 | +Checks: > |
| 2 | + google-*, |
| 3 | + readability-identifier-naming, |
| 4 | + modernize-redundant-void-arg, |
| 5 | + modernize-concat-nested-namespaces, |
| 6 | + modernize-use-nullptr, |
| 7 | + modernize-use-default-member-init, |
| 8 | + modernize-use-override, |
| 9 | + -google-runtime-references, |
| 10 | + -clang-analyzer-*, |
| 11 | + -misc-unused-include |
| 12 | +
|
| 13 | +CheckOptions: |
| 14 | + - key: readability-identifier-naming.ClassCase |
| 15 | + value: CamelCase |
| 16 | + |
| 17 | + - key: readability-identifier-naming.StructCase |
| 18 | + value: CamelCase |
| 19 | + |
| 20 | + - key: readability-identifier-naming.FunctionCase |
| 21 | + value: CamelCase |
| 22 | + |
| 23 | + - key: readability-identifier-naming.IgnoreMainLikeFunctions |
| 24 | + value: 'true' |
| 25 | + |
| 26 | + - key: readability-identifier-naming.IgnoreOverrideFunctions |
| 27 | + value: 'true' |
| 28 | + |
| 29 | + - key: readability-identifier-naming.FunctionIgnoredRegexp |
| 30 | + value: '^([A-Za-z0-9_]+_(IRQHandler|Handler))$' |
| 31 | + |
| 32 | + - key: readability-identifier-naming.VariableCase |
| 33 | + value: lower_case |
| 34 | + |
| 35 | + - key: readability-identifier-naming.ParameterCase |
| 36 | + value: lower_case |
| 37 | + |
| 38 | + - key: readability-identifier-naming.PrivateMemberCase |
| 39 | + value: lower_case |
| 40 | + - key: readability-identifier-naming.PrivateMemberSuffix |
| 41 | + value: _ |
| 42 | + |
| 43 | + - key: readability-identifier-naming.PublicMemberCase |
| 44 | + value: lower_case |
| 45 | + |
| 46 | + - key: readability-identifier-naming.ConstantCase |
| 47 | + value: CamelCase |
| 48 | + - key: readability-identifier-naming.ConstantPrefix |
| 49 | + value: k |
| 50 | + |
| 51 | + - key: readability-identifier-naming.GlobalConstantCase |
| 52 | + value: CamelCase |
| 53 | + - key: readability-identifier-naming.GlobalConstantPrefix |
| 54 | + value: k |
| 55 | + |
| 56 | + - key: readability-identifier-naming.LocalConstantCase |
| 57 | + value: CamelCase |
| 58 | + - key: readability-identifier-naming.LocalConstantPrefix |
| 59 | + value: k |
| 60 | + |
| 61 | + - key: readability-identifier-naming.EnumCase |
| 62 | + value: CamelCase |
| 63 | + |
| 64 | + - key: readability-identifier-naming.EnumConstantCase |
| 65 | + value: CamelCase |
| 66 | + - key: readability-identifier-naming.EnumConstantPrefix |
| 67 | + value: k |
| 68 | + |
| 69 | + - key: readability-identifier-naming.EnumConstantMemberCase |
| 70 | + value: CamelCase |
| 71 | + - key: readability-identifier-naming.EnumConstantMemberPrefix |
| 72 | + value: k |
| 73 | + |
| 74 | + - key: readability-identifier-naming.MacroDefinitionCase |
| 75 | + value: UPPER_CASE |
| 76 | + |
| 77 | + - key: readability-identifier-naming.TreatAsConstant |
| 78 | + value: 'constexpr' |
| 79 | + |
| 80 | +WarningsAsErrors: '' |
| 81 | +HeaderFilterRegex: '.*' |
| 82 | +FormatStyle: none |
0 commit comments