-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
37 lines (36 loc) · 914 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
36
37
#
# To list all available checks:
# clang-tidy -checks=* --list-checks
#
# Note that clang-tidy has mostly checks for C++
#
# Checks list explained:
# -* means start by removing all checks
# bugprone-* adds in all checks starting with bugprone-
# -blabla removes a single check named blabla
#
Checks: >
-*,
bugprone-*,
cert-*,
clang-analyzer-*,
concurrency-*,
google-*,
hicpp-*,
linuxkernel-must-check-errs,
llvm-*,
misc-*,
performance-*,
portability-*,
readability-*,
-misc-no-recursion,
-hicpp-uppercase-literal-suffix,
-readability-magic-numbers,
-readability-identifier-length,
-readability-function-cognitive-complexity,
-readability-uppercase-literal-suffix,
-readability-else-after-return,
-performance-no-int-to-ptr,
-bugprone-easily-swappable-parameters,
-llvm-else-after-return,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling