-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
57 lines (55 loc) · 1.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
Checks: -*
bugprone-*
cert-*
concurrency-*
cppcoreguidelines-*
misc-*
modernize-*
performance-*
portability-*
readability-*
-cppcoreguidelines-avoid-magic-numbers
-cppcoreguidelines-missing-std-forward
-cppcoreguidelines-pro-*
-misc-include-cleaner
-modernize-use-nodiscard
-modernize-use-trailing-return-type
-readability-identifier-length
-readability-magic-numbers
WarningsAsErrors: "*"
HeaderFilterRegex: "Source/.*"
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.ClassMemberCase
value: CamelCase
- key: readability-identifier-naming.ConstexprVariableCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.EnumConstantCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: CamelCase
- key: readability-identifier-naming.FunctionIgnoredRegexp
value: main|wmain|wWinMain|begin|end
- key: readability-identifier-naming.GlobalConstantCase
value: CamelCase
- key: readability-identifier-naming.StaticConstantCase
value: CamelCase
- key: readability-identifier-naming.StaticVariableCase
value: CamelCase
- key: readability-identifier-naming.MacroDefinitionCase
value: UPPER_CASE
- key: readability-identifier-naming.MemberCase
value: CamelCase
- key: readability-identifier-naming.PrivateMemberPrefix
value: m_
- key: readability-identifier-naming.NamespaceCase
value: CamelCase
- key: readability-identifier-naming.ParameterCase
value: camelBack
- key: readability-identifier-naming.TypeAliasCase
value: CamelCase
- key: readability-identifier-naming.VariableCase
value: camelBack