forked from immobiliare/RealHTTP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftlint.yml
More file actions
37 lines (32 loc) · 730 Bytes
/
.swiftlint.yml
File metadata and controls
37 lines (32 loc) · 730 Bytes
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
disabled_rules: # rule identifiers to exclude from running
- trailing_whitespace
- todo
- nesting
- operator_whitespace
- large_tuple
- closure_parameter_position
included: # paths to include during linting. `--path` is ignored if present. takes precendence over `excluded`.
- Sources/RealHTTP
excluded: # paths to ignore during linting. overridden by `included`.
identifier_name:
excluded:
- bg
- fg
- id
- os
- SQLITE_TRANSIENT
- SQLITE_STATIC
type_body_length:
warning: 260
error: 260
function_body_length:
warning: 60
error: 60
line_length:
warning: 150
error: 150
ignores_comments: true
file_length:
warning: 500
error: 500
ignore_comment_only_lines: true