forked from MyEtherWallet/mew-wallet-ios-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.swiftlint.yml
67 lines (52 loc) · 766 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
warning_threshold: 35
#opt_in_rules:
# indentation_width
excluded:
- .build
disabled_rules:
- trailing_whitespace
line_length:
ignores_comments: true
warning: 180
function_parameter_count:
warning: 10
error: 15
file_length:
warning: 800
error: 1000
type_body_length:
warning: 400
error: 450
function_body_length:
warning: 70
error: 200
identifier_name:
allowed_symbols: "_"
excluded:
- dx
- dy
- id
- to
- up
- i
- j
- k
- l
- at
large_tuple:
warning: 4
error: 5
type_name:
min_length: 3
max_length:
warning: 50
error: 70
cyclomatic_complexity:
ignores_case_statements: true
warning: 20
error: 30
nesting:
type_level: 3
#indentation_width:
# indentation_width: 2
reporter: "xcode"