-
Notifications
You must be signed in to change notification settings - Fork 0
/
.clang-tidy
32 lines (29 loc) · 900 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
# https://clang.llvm.org/extra/clang-tidy/checks/list.html
---
Checks: 'bugprone-*,
cert-*,
clang-analyzer-*,
concurrency-*,
cppcoreguidelines-*,
llvm-*,
misc-*,
modernize-*,
performance-*,
portability-*,
readability-*,
-llvm-header-guard,
-modernize-use-trailing-return-type,
-readability-braces-around-statements,
-readability-identifier-length,
-readability-magic-numbers,
-cppcoreguidelines-avoid-magic-numbers'
CheckOptions:
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
value: "true"
- key: llvm-namespace-comment.SpacesBeforeComments
value: "2"
- key: readability-implicit-bool-conversion.AllowPointerConditions
value: "true"
- key: readability-uppercase-literal-suffix.NewSuffixes
value: "f"
...