-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
40 lines (40 loc) · 1.26 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
---
Checks: "*, \
-abseil-*, \
-cert-env33-c, \
-cert-err58-cpp, \
-clang-diagnostic-padded, \
-clang-analyzer-deadcode.DeadStores, \
-cppcoreguidelines-avoid-magic-numbers, \
-cppcoreguidelines-pro-bounds-constant-array-index, \
-cppcoreguidelines-pro-bounds-pointer-arithmetic, \
-cppcoreguidelines-pro-type-reinterpret-cast, \
-cppcoreguidelines-no-malloc, \
-cppcoreguidelines-owning-memory, \
-cppcoreguidelines-macro-usage, \
-cppcoreguidelines-pro-type-vararg, \
-cppcoreguidelines-pro-bounds-array-to-pointer-decay, \
-fuchsia-overloaded-operator, \
-fuchsia-default-arguments, \
-fuchsia-multiple-inheritance, \
-fuchsia-default-arguments-calls, \
-fuchsia-trailing-return, \
-fuchsia-default-arguments-declarations, \
-fuchsia-statically-constructed-objects, \
-google-runtime-references, \
-google-runtime-int, \
-google-explicit-constructor, \
-hicpp-no-malloc, \
-hicpp-vararg, \
-hicpp-invalid-access-moved, \
-hicpp-no-array-decay, \
-hicpp-signed-bitwise, \
-llvm-header-guard, \
-modernize-use-trailing-return-type, \
-misc-definitions-in-headers, \
-misc-unused-alias-decls, \
-modernize-concat-nested-namespaces, \
-modernize-raw-string-literal, \
-readability-magic-numbers"
HeaderFilterRegex: ""
...