-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy path.clang-tidy
54 lines (54 loc) · 1.78 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
---
Checks: "*,-llvm-*,
-cert-env33-c,
-cert-dcl50-cpp,
-cert-dcl59-cpp,
-cppcoreguidelines-no-malloc,
-cppcoreguidelines-pro-bounds-constant-array-index,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-type-const-cast,
-cppcoreguidelines-pro-type-cstyle-cast,
-cppcoreguidelines-pro-type-reinterpret-cast,
-cppcoreguidelines-pro-type-union-access,
-cppcoreguidelines-pro-type-vararg,
-cppcoreguidelines-special-member-functions,
-cppcoreguidelines-owning-memory,
-fuchsia-*,
-google-*,
google-explicit-constructor,
google-runtime-member-string-references,
google-runtime-memset,
google-runtime-operator,
-hicpp-named-parameter,
-hicpp-no-assembler,
-hicpp-function-size,
-hicpp-special-member-functions,
-hicpp-vararg,
-hicpp-no-array-decay,
-readability-else-after-return,
-readability-implicit-bool-cast,
-readability-named-parameter,
-readability-simplify-boolean-expr,
-readability-braces-around-statements,
-readability-identifier-naming,
-readability-function-size,
-readability-redundant-member-init,
-readability-static-accessed-through-instance,
-misc-bool-pointer-implicit-conversion,
-misc-definitions-in-headers,
-misc-unused-alias-decls,
-misc-unused-parameters,
-misc-unused-using-decls,
-modernize-use-using,
-modernize-use-default-member-init,
-modernize-use-bool-literals"
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: 'file'
CheckOptions:
- key: readability-implicit-bool-conversion.AllowIntegerConditions
value: 1
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: 1