-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.clang-tidy
75 lines (73 loc) · 2.5 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
---
Checks: '
-*,
bugprone-*,
clang-analyzer-*,
clang-diagnostic-*,
concurrency-mt-unsafe,
cppcoreguidelines-no-malloc,
misc-*,
modernize-*,
performance-*,
readability-*,
-misc-include-cleaner,
-misc-new-delete-overloads,
-misc-no-recursion,
-misc-use-anonymous-namespace,
-modernize-use-trailing-return-type,
-modernize-use-nodiscard,
-modernize-avoid-c-arrays,
-bugprone-easily-swappable-parameters,
-bugprone-multi-level-implicit-pointer-conversion,
-performance-enum-size,
-readability-avoid-nested-conditional-operator'
FormatStyle: file
WarningsAsErrors: '*'
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: 'CamelCase'
- key: readability-identifier-naming.ClassConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ClassMemberCase
value: 'camelBack'
- key: readability-identifier-naming.ClassMemberPrefix
value: 's_'
- key: readability-identifier-naming.ClassMethodCase
value: 'camelBack'
- key: readability-identifier-naming.ConstantMemberCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.EnumConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.FunctionCase
value: 'camelBack'
- key: readability-identifier-naming.GlobalVariablePrefix
value: 'g_'
- key: readability-identifier-naming.GlobalConstantPrefix
value: ''
- key: readability-identifier-naming.MacroDefinitionCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.MemberCase
value: 'camelBack'
- key: readability-identifier-naming.NamespaceCase
value: 'lower_case'
- key: readability-identifier-naming.ParameterCase
value: 'camelBack'
- key: readability-identifier-naming.PrivateMemberPrefix
value: 'm_'
- key: readability-identifier-naming.ProtectedMemberPrefix
value: 'm_'
- key: readability-identifier-naming.StructCase
value: 'CamelCase'
- key: readability-identifier-naming.TypeAliasCase
value: 'CamelCase'
- key: readability-identifier-naming.TypeAliasIgnoredRegexp
value: '^.*_type$|^.*_category$|^.*reference$|^.*iterator$|^.*pointer$'
- key: readability-identifier-naming.VariableCase
value: 'camelBack'
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: True
- key: readability-magic-numbers.IgnorePowersOf2IntegerValues
value: True
- key: readability-magic-numbers.IgnoredIntegerValues
value: '0;1;2;3;4;255;65535;4294967295'
...