-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy path.clang-tidy
44 lines (44 loc) · 1.85 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
---
Checks: 'bugprone-*,
-bugprone-suspicious-missing-comma,
clang-diagnostic-*,
-clang-diagnostic-address-of-packed-member,
-clang-diagnostic-warning,
clang-analyzer-*,
-clang-analyzer-valist.Uninitialized,
-clang-analyzer-optin.performance.Padding,
-clang-analyzer-unix.Malloc,
-clang-analyzer-core.uninitialized.Assign,
-clang-analyzer-security.insecureAPI.strcpy,
-clang-analyzer-core.UndefinedBinaryOperatorResult,
-clang-analyzer-core.uninitialized.UndefReturn,
-clang-analyzer-core.NullDereference,
misc-*,
-misc-unused-parameters,
performance-*,
portability-*,
readability-*,
-readability-braces-around-statements,
-readability-redundant-member-init,
-readability-implicit-bool-conversion'
WarningsAsErrors: ''
HeaderFilterRegex: ''
AnalyzeTemporaryDtors: false
FormatStyle: file
User: abuild
CheckOptions:
- key: google-readability-braces-around-statements.ShortStatementLines
value: '2'
- key: readability-braces-around-statements.ShortStatementLines
value: '2'
- key: readability-function-size.StatementThreshold
value: '1540'
- key: readability-function-size.BranchThreshold
value: '98'
- key: readability-function-size.ParameterThreshold
value: '22'
- key: readability-function-size.NestingThreshold
value: '7'
- key: readability-function-size.VariableThreshold
value: '293'
...