-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy path.clang-tidy
More file actions
65 lines (56 loc) · 1.77 KB
/
Copy path.clang-tidy
File metadata and controls
65 lines (56 loc) · 1.77 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Checks: >
-*,
google-*,
modernize-*,
performance-*,
-modernize-use-trailing-return-type,
-readability-identifier-length,
-readability-magic-numbers,
-modernize-pass-by-value,
-cppcoreguidelines-avoid-c-arrays,
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
-cppcoreguidelines-pro-type-vararg,
-cppcoreguidelines-pro-bounds-pointer-arithmetic,
-modernize-avoid-c-arrays,
-readability-function-size,
-google-readability-todo,
-readability-named-parameter,
-google-readability-casting,
-modernize-use-auto,
-google-readability-avoid-underscore-in-googletest-name,
-performance-enum-size,
-modernize-use-ranges,
CheckOptions:
- key: IndentWidth
value: 2
- key: ContinuationIndentWidth
value: 4
- key: PointerAlignment
value: Left
- key: google-readability-function-size.StatementThreshold
value: 1000
- key: readability-braces-around-statements.ShortStatementLines
value: 1
- key: readability-braces-around-statements.AllowSingleLineStmt
value: true
- key: modernize-use-default-member-init.IncludeStyle
value: parentheses
- key: google-readability-function-size.ClassLines
value: 300
- key: readability-parameter-list.BinPackParameters
value: true
- key: readability-identifier-naming.ClassCase
value: CamelCase
- key: readability-identifier-naming.VariableCase
value: lower_case
- key: readability-identifier-naming.GlobalConstantCase
value: UPPER_CASE
- key: readability-qualified-auto.LeftAlignQualifiers
value: true
- key: google-readability-namespace-comments.SpacesBeforeComments
value: 2
- key: readability-misleading-indentation.CommentIndentation
value: 2
WarningsAsErrors: '*'
HeaderFilterRegex: '.+'
FormatStyle: file