forked from majd/ipatool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swiftlint.yml
46 lines (40 loc) · 880 Bytes
/
.swiftlint.yml
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
disabled_rules:
- cyclomatic_complexity
- type_body_length
- identifier_name
- function_body_length
opt_in_rules:
- multiline_function_chains
- anyobject_protocol
- overridden_super_call
- prohibited_super_call
- last_where
- contains_over_first_not_nil
- vertical_parameter_alignment_on_call
- multiline_arguments
- multiline_literal_brackets
- closure_end_indentation
- collection_alignment
- reduce_into
- explicit_init
- static_operator
- sorted_first_last
- no_space_in_method_call
- contains_over_filter_count
- contains_over_filter_is_empty
- empty_collection_literal
- empty_count
type_name:
validates_start_with_lowercase: false
nesting:
type_level:
warning: 3
line_length:
warning: 120
error: 120
ignore_comments: true
ignore_urls: true
file_length:
warning: 1000
error: 1000
reporter: "xcode"