give HTTPRequest a public initializer
[http-swiftserver.git] / .swiftlint.yml
blob32f3aa1f470c3d2a292a3e749b2302335d462e2a
1 included:
2         - Sources
3         - Tests
5 opt_in_rules:
6         - closure_end_indentation
7         - closure_spacing
8         - fatal_error_message
9         - operator_usage_whitespace
10         - redundant_nil_coalescing
11         - switch_case_on_newline
12         - attributes
13         - no_extension_access_modifier
15 disabled_rules:
16         - trailing_comma
17         - line_length
18         - file_length
19         - function_body_length
20         - type_body_length
21         - todo
23 identifier_name:
24   excluded: 
25         - i
26         - ok
27         - im
28         - if
29         - te
31 large_tuple: 4
33 cyclomatic_complexity: 15
35 nesting:
36   type_level: 2