-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
55 lines (44 loc) · 1.3 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
51
52
53
54
55
---
HeaderFilterRegex: 'yatlib/[^\/]+\.hpp$$'
Checks:
-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
-bugprone-branch-clone,
cert-*,
-cert-err58-cpp,
-cert-dcl37-c,
-cert-dcl51-cpp,
-cert-dcl21-cpp,
clang-analyzer-*,
concurrency-*,
cppcoreguidelines-*,
-cppcoreguidelines-pro-type-vararg,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-pro-type-static-cast-downcast,
-cppcoreguidelines-pro-bounds-constant-array-index,
highcpp-*,
misc-*,
-misc-no-recursion,
-misc-non-private-member-variables-in-classes,
performance-*,
portability-*,
readability-*,
-readability-magic-numbers,
-readability-named-parameter,
-readability-redundant-access-specifiers,
-readability-convert-member-functions-to-static,
-readability-static-accessed-through-instance,
CheckOptions:
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: 'true'
- key: readability-implicit-bool-conversion.AllowIntegerConditions
value: 'true'
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: 'true'
- key: readability-function-cognitive-complexity.IgnoreMacros
value: 'true'
- key: cppcoreguidelines-macro-usage.AllowedRegexp
value: 'YAT_*.'
...