-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.clang-tidy
More file actions
32 lines (32 loc) · 1.25 KB
/
.clang-tidy
File metadata and controls
32 lines (32 loc) · 1.25 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
---
Checks: >
-*,
readability-identifier-naming
CheckOptions:
# types
readability-identifier-naming.ClassCase: CamelCase
readability-identifier-naming.EnumCase: CamelCase
readability-identifier-naming.UnionCase: CamelCase
# namespace
readability-identifier-naming.NamespaceCase: lower_case
# enums
readability-identifier-naming.EnumConstantCase: UPPER_CASE
readability-identifier-naming.ScopedEnumConstantCase: CamelCase
# functions
readability-identifier-naming.FunctionCase: camelBack
# struct fields
readability-identifier-naming.ClassConstantCase: UPPER_CASE
readability-identifier-naming.ProtectedMemberCase: CamelCase
readability-identifier-naming.ProtectedMemberPrefix: m
readability-identifier-naming.PrivateMemberCase: CamelCase
readability-identifier-naming.PrivateMemberPrefix: m
# statics
readability-identifier-naming.StaticVariableCase: CamelCase
readability-identifier-naming.StaticVariablePrefix: s
readability-identifier-naming.ClassMemberCase: CamelCase
readability-identifier-naming.ClassMemberPrefix: s
# constants
readability-identifier-naming.GlobalConstantCase: UPPER_CASE
# globals
readability-identifier-naming.GlobalVariableCase: CamelCase
readability-identifier-naming.GlobalVariablePrefix: g