-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.clang-tidy
33 lines (33 loc) · 1.03 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: "-*,\
bugprone-*,\
modernize-*,\
performance-*,\
readability-*,\
cppcoreguidelines-init-variables,\
cppcoreguidelines-narrowing-conversions,\
cppcoreguidelines-prefer-member-initializer,\
cppcoreguidelines-pro-type-member-init,\
-bugprone-lambda-function-name,\
-bugprone-reserved-identifier,\
-readability-else-after-return,\
-readability-function-cognitive-complexity, \
-readability-magic-numbers,\
-readability-avoid-const-params-in-decls"
WarningsAsErrors: ""
HeaderFilterRegex: ".*"
FormatStyle: none
CheckOptions:
- key: readability-function-size.LineThreshold
value: '2000'
- key: readability-function-size.StatementThreshold
value: '2000'
- key: readability-function-size.BranchThreshold
value: '2000'
- key: readability-function-size.ParameterThreshold
value: '2000'
- key: readability-function-size.NestingThreshold
value: '2000'
- key: readability-function-size.VariableThreshold
value: '2000'
...