A HTTP client built with and for PointFree's swift-dependencies
516 B
33 lines
1excluded: # paths to ignore during linting. Takes precedence over `included`.
2 - Carthage
3 - Pods
4
5line_length:
6 warning: 190
7function_parameter_count:
8 warning: 6
9function_body_length:
10 warning: 80
11type_body_length:
12 warning: 450
13file_length:
14 warning: 700
15identifier_name:
16 min_length: 2
17 max_length: 60
18 excluded:
19 - id
20 - qa
21type_name:
22 min_length: 2
23 max_length: 60
24
25disabled_rules:
26 - vertical_parameter_alignment
27
28opt_in_rules:
29 - force_unwrapping
30
31
32force_unwrapping:
33 severity: error