-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
.clang-tidy
36 lines (35 loc) · 924 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
33
34
35
---
Checks: '*,
-altera-id-dependent-backward-branch,
-altera-struct-pack-align,
-altera-unroll-loops,
-bugprone-easily-swappable-parameters,
-cert-err58-cpp,
-clang-diagnostic-padded,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-macro-usage,
-fuchsia-default-arguments-calls,
-fuchsia-default-arguments,
-fuchsia-multiple-inheritance,
-fuchsia-overloaded-operator,
-fuchsia-trailing-return,
-google-explicit-constructor,
-google-runtime-int,
-hicpp-invalid-access-moved,
-hicpp-no-array-decay,
-hicpp-no-malloc,
-hicpp-vararg,
-llvm-header-guard,
-llvmlibc-callee-namespace,
-llvmlibc-implementation-in-namespace,
-llvmlibc-restrict-system-libc-headers,
-misc-definitions-in-headers,
-modernize-concat-nested-namespaces,
-modernize-macro-to-enum,
-modernize-use-trailing-return-type,
-readability-identifier-length,
-readability-magic-numbers,
'
WarningsAsErrors: '*'
HeaderFilterRegex: 'nanobench\.h'
...