-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.clang-tidy
35 lines (34 loc) · 1.01 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
---
Checks: >-
*
# , -llvmlibc-*
# , -llvm-header-guard
# , -fuchsia-*
, -modernize-use-trailing-return-type
, -modernize-use-nodiscard
, -bugprone-unused-return-value
, -cert-err33-c
, -hicpp-explicit-conversions
, -google-explicit-constructor
, -misc-no-recursion
# , -modernize-avoid-c-arrays
# , -modernize-pass-by-value
# , -readability-braces-around-statements
# , -readability-implicit-bool-conversion
# , -readability-else-after-return
# , -readability-convert-member-functions-to-static
# , -cppcoreguidelines-avoid-c-arrays
# , -hicpp-avoid-c-arrays
# , -hicpp-braces-around-statements
# , -google-readability-braces-around-statements
# , -google-build-using-namespace
# , -bugprone-infinite-loop
# , -abseil-string-find-startswith
# , -abseil-string-find-str-contains
# , -altera-unroll-loops
# , -altera-id-dependent-backward-branch
# , -cppcoreguidelines-pro-bounds-array-to-pointer-decay
# , -hicpp-no-array-decay
WarningsAsErrors: '*'
HeaderFilterRegex: ''
FormatStyle: none