-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
28 lines (28 loc) · 1.51 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*,
modernize*,
bugprone*,
performance*,
clang-analyzer-*,
portability-*,
-modernize-use-trailing-return-type,
-modernize-avoid-c-arrays,
-readability-uppercase-literal-suffix,
-readability-magic-numbers,
-readability-const-return-type,
-readability-static-accessed-through-instance'
CheckOptions:
- { key: readability-identifier-naming.LocalVariableCase, value: lower_case }
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
- { key: readability-identifier-naming.ClassCase, value: lower_case }
- { key: readability-identifier-naming.StructCase, value: lower_case }
- { key: readability-identifier-naming.FunctionCase, value: lower_case }
- { key: readability-identifier-naming.VariableCase, value: lower_case }
- { key: readability-identifier-naming.ClassMemberCase, value: lower_case }
- { key: readability-identifier-naming.PrivateMemberSuffix, value: '_' }
- { key: readability-identifier-naming.PublicMemberSuffix, value: '_' }
- { key: readability-identifier-naming.MemberSuffix, value: '_' }
- { key: readability-identifier-naming.MemberCase, value: lower_case }
- { key: readability-identifier-naming.ParameterCase, value: lower_case }
- { key: readability-identifier-naming.ConstexprVariableCase, value: lower_case }
- { key: readability-identifier-naming.GlobalConstantCase, value: lower_case }