-
Notifications
You must be signed in to change notification settings - Fork 2
/
.clang-tidy
50 lines (50 loc) · 1.76 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Checks: >-
-*,
clang-diagnosic-*,
bugprone-*,
bugprone-easily-swappable-parameters,
-bugprone-narrowing-conversions,
-bugprone-unchecked-optional-access,
cert-*,
google-build-namespaces,
llvm-header-guard,
llvm-include-order,
llvm-namespace-comment,
misc-*,
-misc-non-private-member-variables-in-classes,
-misc-unused-parameters,
modernize-*,
-modernize-avoid-c-arrays,
-modernize-concat-nested-namespaces,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
performance-*,
readability-*,
-readability-braces-around-statements,
-readability-convert-member-functions-to-static,
-readability-function-cognitive-complexity,
-readability-implicit-bool-conversion,
readability-identifier-naming,
-readability-identifier-length,
readability-suspicious-call-argument
CheckOptions:
- key: bugprone-easily-swappable-parameters.QualifiersMix
value: true
- key: bugprone-easily-swappable-parameters.ModelImplicitConversions
value: true
- key: performance-move-const-arg.CheckTriviallyCopyableMove
value: false
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.EnumCase
value: CamelCase
- key: readability-identifier-naming.FunctionCase
value: camelBack
- key: readability-identifier-naming.MemberCase
value: CamelCase
- key: readability-identifier-naming.ParameterCase
value: CamelCase
- key: readability-identifier-naming.UnionCase
value: CamelCase
- key: readability-identifier-naming.VariableCase
value: CamelCase