-
Notifications
You must be signed in to change notification settings - Fork 23
/
.clang-tidy
33 lines (33 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
Checks: "*, \
###################, \
# ENABLED CHECKS , \
###################, \
modernize-*, \
cppcoreguidelines-*, \
hicpp-*, \
google-*, \
bugprone-*, \
llvm-*, \
performance-*, \
readability-*, \
clang-analyzer-*, \
zircon-*, \
portability-*, \
misc-*, \
boost-*, \
abseil-*, \
###################, \
# DISABLED CHECKS , \
###################, \
-fuchsia-default-arguments, \
-readability-container-size-empty, \
-google-readability-namespace-comments, \
-llvm-namespace-comment, \
-modernize-use-trailing-return-type, \
-fuchsia-default-arguments-calls, \
# TODO remove following lines, \
-cppcoreguidelines-avoid-magic-numbers, \
-readability-magic-numbers, \
-cppcoreguidelines-avoid-magic-numbers, \
-cppcoreguidelines-init-variables, \
"