-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
32 lines (32 loc) · 1001 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
23
24
25
26
27
28
29
30
31
32
---
Checks: >
bugprone-*,
-bugprone-easily-swappable-parameters,
clang-diagnostic-*,
clang-analyzer-*,
modernize-*,
-modernize-use-default-member-init,
-modernize-use-trailing-return-type,
performance-*,
readability-*,
-readability-avoid-const-params-in-decls,
-readability-convert-member-functions-to-static,
-readability-implicit-bool-conversion,
-readability-identifier-length,
-readability-isolate-declaration,
-readability-magic-numbers,
WarningsAsErrors: ""
HeaderFilterRegex: ""
CheckOptions:
- key: readability-identifier-naming.LocalConstantCase
value: "camelBack"
- key: readability-identifier-naming.ConstantParameterCase
value: "camelBack"
- key: readability-identifier-naming.GlobalConstantCase
value: "UPPER_CASE"
- key: readability-identifier-naming.VariableCase
value: "camelBack"
- key: readability-identifier-naming.ProtectedMemberSuffix
value: "_"
- key: readability-identifier-naming.PrivateMemberSuffix
value: "_"