-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path.clang-tidy
More file actions
43 lines (36 loc) · 1.27 KB
/
.clang-tidy
File metadata and controls
43 lines (36 loc) · 1.27 KB
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
Checks: >
-*,
readability-identifier-naming,
modernize-use-nodiscard,
modernize-avoid-c-arrays,
modernize-use-nullptr,
modernize-deprecated-headers,
modernize-replace-auto-ptr,
modernize-use-default-member-init,
modernize-use-equals-default,
modernize-use-equals-delete,
modernize-return-braced-init-list,
modernize-use-using,
modernize-use-transparent-functors,
cppcoreguidelines-avoid-c-arrays,
cppcoreguidelines-pro-type-cstyle-cast
WarningsAsErrors: ''
CheckOptions:
# Function names: snake_case
- key: readability-identifier-naming.FunctionCase
value: lower_case
# Variable names: snake_case
- key: readability-identifier-naming.VariableCase
value: lower_case
# Constants: SCREAMING_SNAKE_CASE
- key: readability-identifier-naming.ConstantCase
value: UPPER_CASE
# Enum constant values: PascalCase
- key: readability-identifier-naming.EnumConstantCase
value: CamelCase
# Public data members: snake_case
- key: readability-identifier-naming.PublicMemberCase
value: lower_case
# Private data members: snake_case
- key: readability-identifier-naming.PrivateMemberCase
value: lower_case