forked from Monitor221hz/CommonLibSSE-NG-Template-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
22 lines (22 loc) · 780 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Checks: '-modernize-use-trailing-return-type,
-bugprone-easily-swappable-parameters,
readability-identifier-naming
'
FormatStyle: file
CheckOptions:
- key: readability-identifier-naming.EnumCase
value: 'CamelCase'
- key: readability-identifier-naming.EnumConstantCase
value: 'UPPER_CASE'
- key: readability-identifier-naming.ClassCase
value: 'CamelCase'
- key: readability-identifier-naming.FunctionCase
value: 'camelBack'
- key: readability-identifier-naming.GlobalFunctionCase
value: 'aNy_CasE'
- key: readability-identifier-naming.ClassMemberCase
value: 'camelBack'
- key: readability-identifier-naming.MemberCase
value: 'camelBack'
- key: readability-identifier-naming.ClassMethodCase
value: 'camelBack'