-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
45 lines (44 loc) · 1.38 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
36
37
38
39
40
41
42
43
44
45
---
Checks: "
*,
-fuchsia-*,
-llvmlibc-*,
-modernize-use-trailing-return-type,
-llvm-header-guard,
-google-runtime-references,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-cppcoreguidelines-non-private-member-variables-in-classes,
-cppcoreguidelines-pro-type-reinterpret-cast,
-misc-non-private-member-variables-in-classes,
-altera-struct-pack-align,
-altera-unroll-loops,
-altera-id-dependent-backward-branch,
-google-readability-braces-around-statements,
-hicpp-braces-around-statements,
-readability-braces-around-statements,
-readability-implicit-bool-conversion,
-google-build-using-namespace
"
WarningsAsErrors: ""
HeaderFilterRegex: ""
AnalyzeTemporaryDtors: false
FormatStyle: file
CheckOptions:
# https://releases.llvm.org/9.0.0/tools/clang/tools/extra/docs/clang-tidy/checks/bugprone-unhandled-self-assignment.html
- key: cert-oop54-cpp.WarnOnlyIfThisHasSuspiciousField
value: false
- key: google-readability-namespace-comments.ShortNamespaceLines
value: "0"
- key: llvm-qualified-auto.AddConstToQualified
value: true
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-loop-convert.NamingStyle
value: CamelCase
- key: modernize-pass-by-value.IncludeStyle
value: google
- key: google-build-using-namespace,
value: False
- key: readability-implicit-bool-conversion
value: False
---