-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy path.swiftlint.yml
More file actions
93 lines (81 loc) · 1.5 KB
/
.swiftlint.yml
File metadata and controls
93 lines (81 loc) · 1.5 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
included:
- Sources
- Tests
excluded:
- .build
- .swiftpm
- Packages
- .git
- DerivedData
- "**/Generated"
- "**/Resources"
opt_in_rules:
- array_init
- closure_spacing
- contains_over_first_not_nil
- empty_count
- empty_string
- explicit_init
- fallthrough
- fatal_error_message
- first_where
- joined_default_parameter
- last_where
- literal_expression_end_indentation
- multiline_arguments
- multiline_parameters
- operator_usage_whitespace
- overridden_super_call
- private_outlet
- redundant_nil_coalescing
- sorted_first_last
- switch_case_alignment
- unneeded_parentheses_in_closure_argument
- vertical_parameter_alignment_on_call
disabled_rules:
- explicit_self
- identifier_name
- file_header
- explicit_acl
- explicit_top_level_acl
- explicit_type_interface
- missing_docs
- required_deinit
- trailing_whitespace
- trailing_newline
- trailing_comma
- vertical_whitespace
- indentation_width
- sorted_imports
- file_name
force_cast: warning
force_try: warning
line_length:
warning: 120
error: 140
ignores_comments: true
ignores_urls: true
file_length:
warning: 450
error: 500
ignore_comment_only_lines: true
type_body_length:
warning: 250
error: 400
function_body_length:
warning: 80
error: 120
cyclomatic_complexity:
warning: 15
error: 25
nesting:
type_level:
warning: 4
error: 6
function_level:
warning: 5
error: 7
large_tuple:
warning: 4
error: 5
reporter: "xcode"