This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.clang-tidy
58 lines (58 loc) · 1.94 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
Checks: '
-*,
readability-*,
-readability-magic-numbers,
modernize-*,
-modernize-use-trailing-return-type,
-modernize-use-default-member-init,
cppcoreguidelines-*,
-cppcoreguidelines-owning-memory,
-cppcoreguidelines-use-default-member-init,
-cppcoreguidelines-avoid-magic-numbers,
bugprone-*,
-bugprone-assert-side-effect,
-bugprone-assignment-in-if-condition
'
WarningsAsErrors: true
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
CheckOptions: # @formatter:off
- key: modernize-replace-auto-ptr.IncludeStyle
value: llvm
- key: readability-uppercase-literal-suffix.NewSuffixes
value: 'L;LL;LU;LLU'
- key: readability-identifier-naming.NamespaceCase
value: lower_case
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.EnumConstant
value: UPPER_CASE
- key: readability-identifier-naming.Member
value: lower_case
- key: readability-identifier-naming.Variable
value: lower_case
- key: readability-identifier-naming.PrivateMemberPrefix
value: '_'
- key: readability-identifier-naming.ProtectedMemberPrefix
value: '_'
- key: readability-identifier-naming.FunctionCase
value: lower_case
- key: readability-identifier-naming.ConstantCase
value: UPPER_CLASS
- key: readability-identifier-naming.ConstantParameterCase
value: lower_case
- key: readability-identifier-naming.ClassConstantCase
value: lower_case
- key: readability-identifier-naming.StaticConstantCase
value: lower_case
- key: readability-identifier-naming.StaticVariableCase
value: lower_case
- key: readability-identifier-naming.StaticVariablePrefix
value: 's_'
- key: readability-identifier-naming.LocalConstantCase
value: lower_case
- key: readability-identifier-naming.TypedefCase
value: CamelCase
- key: readability-identifier-naming.TypeAliasCase
value: CamelCase
# @formatter:on