forked from expresscpp/expresscpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.clang-tidy
More file actions
39 lines (34 loc) · 1.82 KB
/
.clang-tidy
File metadata and controls
39 lines (34 loc) · 1.82 KB
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
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, \
-readability-else-after-return, \
-google-readability-namespace-comments, \
-llvm-namespace-comment, \
-modernize-use-trailing-return-type, \
-fuchsia-default-arguments-calls \
"
WarningsAsErrors: " \
readability-inconsistent-declaration-parameter-name, \
misc-unused-using-decls, \
modernize-raw-string-literal, \
"