-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.clang-tidy
108 lines (88 loc) · 2.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Checks: >
-*,
clang-diagnostic-*,
-llvmlibc-restrict-system-libc-headers,
llvm-*,
misc-*,
-misc-const-correctness,
-misc-unused-parameters,
-misc-non-private-member-variables-in-classes,
-misc-no-recursion,
-misc-use-anonymous-namespace,
readability-identifier-naming,
-llvm-header-guard,
-llvm-include-order,
WarningsAsErrors: "*"
CheckOptions:
# function
- key: readability-identifier-naming.FunctionCase
value: CamelCase
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 1
# parameter
- key: readability-identifier-naming.ParameterCase
value: camelBack
# class
- key: readability-identifier-naming.ClassCase
value: CamelCase
# public method
- key: readability-identifier-naming.PublicMethodCase
value: CamelCase
# protected method
- key: readability-identifier-naming.ProtectedMethodCase
value: camelBack
# private method
- key: readability-identifier-naming.PrivateMethodCase
value: camelBack
# public member
- key: readability-identifier-naming.PublicMemberCase
value: CamelCase
- key: readability-identifier-naming.PublicMemberPrefix
value: m
# protected member
- key: readability-identifier-naming.ProtectedMemberCase
value: CamelCase
- key: readability-identifier-naming.ProtectedMemberPrefix
value: m
# private member
- key: readability-identifier-naming.PrivateMemberCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberPrefix
value: m
# class member
- key: readability-identifier-naming.ClassMemberCase
value: CamelCase
- key: readability-identifier-naming.ClassMemberPrefix
value: s
# enum
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.EnumConstantCase
value: CamelCase
- key: readability-identifier-naming.EnumConstantPrefix
value: k
# union
- key: readability-identifier-naming.UnionCase
value: CamelCase
# variable
- key: readability-identifier-naming.VariableCase
value: camelBack
# static variable
- key: readability-identifier-naming.StaticVariableCase
value: CamelCase
- key: readability-identifier-naming.StaticVariablePrefix
value: s
# static const
- key: readability-identifier-naming.StaticConstantCase
value: CamelCase
- key: readability-identifier-naming.StaticConstantPrefix
value: k
# constexpr
- key: readability-identifier-naming.ConstexprVariableCase
value: CamelCase
- key: readability-identifier-naming.ConstexprVariablePrefix
value: k
- key: readability-redundant-member-init.IgnoreBaseInCopyConstructors
value: 1
- key: modernize-use-default-member-init.UseAssignment
value: 1