-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.swiftlint.yml
68 lines (58 loc) · 1.14 KB
/
.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
68
disabled_rules:
#- trailing_whitespace
- large_tuple
- function_parameter_count
- force_cast
opt_in_rules:
- empty_count
- empty_string
excluded:
- Carthage
- Pods
- SwiftLint/Common/3rdPartyLib
- SmartColony/R.generated.swift
line_length:
warning: 150
error: 200
ignores_function_declarations: true
ignores_comments: true
ignores_urls: true
function_body_length:
warning: 300
error: 500
type_body_length:
warning: 300
error: 500
file_length:
warning: 2000
error: 2500
ignore_comment_only_lines: true
cyclomatic_complexity:
warning: 51
error: 75
# naming rules can set warnings/errors for min_length and max_length
# additionally they can set excluded names
type_name:
allowed_symbols: "_"
min_length: 4 # only warning
max_length: # warning and error
warning: 40
error: 50
excluded:
- UI
identifier_name:
allowed_symbols: "_"
min_length: # only min_length
error: 3 # only error
excluded: # excluded via string array
- x
- y
- pt
- id
- dx
- dy
- to
- nx
- ny
- on
reporter: "xcode"