forked from shanteacontrols/OpenDeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
56 lines (56 loc) · 3.01 KB
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
Checks: 'clang-analyzer-*,readability-braces-around-statements,readability-else-after-return,readability-inconsistent-declaration-parameter-name,modernize-use-equals-default,modernize-use-using,modernize-redundant-void-arg,modernize-concat-nested-namespaces,misc-redundant-expression,readability-static-accessed-through-instance,readability-static-accessed-through-instance,performance-inefficient-vector-operation,readability-identifier-naming'
WarningsAsErrors: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
- key: readability-braces-around-statements.ShortStatementLines
value: '0'
- key: readability-inconsistent-declaration-parameter-name.Strict
value: 'true'
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 'true'
- key: readability-identifier-naming.FunctionIgnoredRegexp
value: 'main'
- key: readability-identifier-naming.ClassCase
value: 'CamelCase'
- key: readability-identifier-naming.ClassMethodCase
value: 'camelBack'
- key: readability-identifier-naming.PrivateMemberCase
value: 'camelBack'
- key: readability-identifier-naming.PrivateMemberPrefix
value: '_'
- key: readability-identifier-naming.ConstexprVariableCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ConstexprFunctionCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.StructCase
value: 'camelBack'
- key: readability-identifier-naming.StructSuffix
value: '_t'
- key: readability-identifier-naming.EnumConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ConstantMemberCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.LocalConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.GlobalConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.GlobalPointerCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.LocalConstantPointerCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ParameterCase
value: 'camelBack'
- key: readability-identifier-naming.VirtualMethodCase
value: 'camelBack'
- key: readability-identifier-naming.StaticConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.StaticVariableCase
value: 'camelBack'
- key: readability-identifier-naming.LocalVariableCase
value: 'camelBack'
- key: readability-identifier-naming.NamespaceCase
value: 'camelBack'
- key: readability-identifier-naming.NamespaceIgnoredRegexp
value: 'i2c'