-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.clang-tidy
38 lines (36 loc) · 820 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
38
Checks: >
clang-analyzer-*,
bugprone-*,
performance-*,
cert-*,
misc-*,
modernize-*,
cppcoreguidelines-*,
concurrency-*,
-modernize-use-trailing-return-type,
-cppcoreguidelines-avoid-magic-numbers,
-llvm-header-guard,
-readability-identifier-length,
-readability-magic-numbers,
-modernize-pass-by-value,
-cert-err58-cpp,
-hicpp-exception-baseclass
WarningsAsErrors: >
clang-analyzer-*,
bugprone-*,
performance-*,
cert-*,
misc-*,
concurrency-mt-unsafe,
concurrency-thread-canceltype,
cppcoreguidelines-pro-type-*,
cppcoreguidelines-owning-memory,
cppcoreguidelines-no-malloc,
hicpp-noexcept,
performance-no-int-to-ptr,
performance-trivially-destructible,
bugprone-exception-escape
HeaderFilterRegex: '.'
AnalyzeTemporaryDtors: true
FormatStyle: file
User: user