-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
28 lines (26 loc) · 1.35 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
Checks: 'readability-identifier-naming,clang-analyzer-*,modernize-use-override, cppcoreguidelines-prefer-member-initializer, -cppcoreguidelines-*, modernize-use-nullptr, clang-diagnostic-*'
WarningsAsErrors: '*'
# IMPORTANT: Set HeaderFilterRegex as shown below.
# Do not set it to '.*', for example.
HeaderFilterRegex: ''
CheckOptions:
- key: readability-identifier-naming.LocalVariableCase
value: 'camelBack'
- key: readability-identifier-naming.ClassConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ClassConstantPrefix
value: ''
- key: readability-identifier-naming.PrivateMemberCase
value: 'camelBack'
- key: readability-identifier-naming.PrivateMemberPrefix
value: 'm_'
- key: readability-identifier-naming.ProtectedMemberCase
value: 'camelBack'
- key: readability-identifier-naming.ProtectedMemberPrefix
value: 'm_'
- key: readability-identifier-naming.PublicMemberCase
value: 'camelBack'
- key: readability-identifier-naming.PublicMemberPrefix
value: ''
- key: readability-identifier-naming.ParameterCase
value: 'camelBack'