-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftlint.yml
More file actions
56 lines (54 loc) · 821 Bytes
/
.swiftlint.yml
File metadata and controls
56 lines (54 loc) · 821 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
included:
- Sources
- Tests
disabled_rules:
- trailing_whitespace
- blanket_disable_command
- multiple_closures_with_trailing_closure
force_try: warning
force_cast: warning
line_length:
warning: 200
error: 300
ignores_urls: true
ignores_function_declarations: false
ignores_comments: true
ignores_interpolated_strings: false
file_length:
warning: 400
error: 500
type_name:
min_length:
warning: 3
error: 2
max_length:
warning: 50
error: 60
identifier_name:
min_length:
error: 3
excluded:
- id
- url
- int
- am
- of
- pm
- no
- up
- iv
- vm
- x
- y
- h
- v
large_tuple:
- 5
- 6
function_parameter_count:
warning: 5
error: 6
nesting:
type_level: 2
cyclomatic_complexity:
ignores_case_statements: true