-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
20 lines (19 loc) · 973 Bytes
/
.clang-tidy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Checks:
'-*,clang-diagnostic-*,misc-*,readability-identifier-naming,performance-*,modernize-*,cppcoreguidelines-*,clang-analyzer-*,cert-*,bugprone-*,-misc-non-private-member-variables-in-classes'
CheckOptions:
- key: readability-identifier-naming.ClassCase
value: snake_case
- key: readability-identifier-naming.EnumCase
value: snake_case
- key: readability-identifier-naming.FunctionCase
value: snake_case
- key: readability-identifier-naming.MemberCase
value: snake_case
- key: readability-identifier-naming.ParameterCase
value: snake_case
- key: readability-identifier-naming.UnionCase
value: snake_case
- key: readability-identifier-naming.VariableCase
value: snake_case
- key: readability-identifier-naming.IgnoreMainLikeFunctions
value: 1