-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy path.swiftlint.yml
More file actions
152 lines (111 loc) · 4.22 KB
/
.swiftlint.yml
File metadata and controls
152 lines (111 loc) · 4.22 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
swiftlint_version: 0.63.2
included:
- Sources
- Tests
- Modules/Sources
- Modules/Tests
- WordPress
# Rules – Opt-in only, so we can progressively introduce new ones
#
only_rules:
# Colons should be next to the identifier when specifying a type.
- colon
# There should be no space before and one after any comma.
- comma
# Prefer `contains` over `filter(where:).count`.
- contains_over_filter_count
# Prefer `contains` over using `filter(where:).isEmpty`.
- contains_over_filter_is_empty
# if,for,while,do statements shouldn't wrap their conditionals in parentheses.
- control_statement
# Allow custom rules. See the end of the config for our custom rules
- custom_rules
- discarded_notification_center_observer
- duplicate_imports
# Prefer checking `isEmpty` over comparing `count` to zero.
- empty_count
# Arguments can be omitted when matching enums with associated types if they
# are not used.
- empty_enum_arguments
# Prefer `() -> ` over `Void -> `.
- empty_parameters
# Prefer checking `isEmpty` over comparing to empty string literal `""`.
- empty_string
# When calling the `joined` method on an array of strings, omit an
# explicit empty-string separator since that is the default.
- joined_default_parameter
# Prefer `last(where:)` over `filter { }.last`.
- last_where
# MARK comment should be in valid format.
- mark
# Opening braces should be preceded by a single space and on the same line as
# the declaration.
- opening_brace
- operator_usage_whitespace
- overridden_super_call
# Example: CGPoint.zero instead of CGPoint(x: 0, y: 0)
- prefer_zero_over_explicit_init
- shorthand_optional_binding
# Prefer `someBool.toggle()` over `someBool = !someBool`.
- toggle_bool
# Files should have a single trailing newline.
- trailing_newline
# Lines should not have trailing semicolons.
- trailing_semicolon
# Lines should not have trailing whitespace.
- trailing_whitespace
# Unused parameter in a closure should be replaced with _.
- unused_closure_parameter
- vertical_whitespace
- weak_delegate
# Rules configuration
#
control_statement:
severity: error
discarded_notification_center_observer:
severity: error
opening_brace:
ignore_multiline_statement_conditions: true
operator_usage_whitespace:
skip_aligned_constants: false
overridden_super_call:
severity: error
trailing_whitespace:
ignores_empty_lines: false
ignores_comments: false
weak_delegate:
severity: error
# Custom rules
#
custom_rules:
natural_content_alignment:
name: "Natural Content Alignment"
regex: '\.contentHorizontalAlignment(\s*)=(\s*)(\.left|\.right)'
message: "Forcing content alignment left or right can affect the Right-to-Left layout. Use naturalContentHorizontalAlignment instead."
severity: warning
natural_text_alignment:
name: "Natural Text Alignment"
regex: '\.textAlignment(\s*)=(\s*).left'
message: "Forcing text alignment to left can affect the Right-to-Left layout. Consider setting it to `natural`"
severity: warning
inverse_text_alignment:
name: "Inverse Text Alignment"
regex: '\.textAlignment(\s*)=(\s*).right'
message: "When forcing text alignment to the right, be sure to handle the Right-to-Left layout case properly, and then silence this warning with this line `// swiftlint:disable:next inverse_text_alignment`"
severity: warning
localization_comment:
name: "Localization Comment"
regex: 'NSLocalizedString([^,]+,\s+comment:\s*"")'
message: "Localized strings should include a description giving context for how the string is used."
severity: warning
string_interpolation_in_localized_string:
name: "String Interpolation in Localized String"
regex: 'NSLocalizedString\("[^"]*\\\(\S*\)'
message: "Localized strings must not use interpolated variables. Instead, use `String(format:`"
severity: error
swiftui_localization:
name: "SwiftUI Localization"
regex: 'LocalizedStringKey'
message: "Using `LocalizedStringKey` is incompatible with our tooling and doesn't allow you to provide a hint/context comment for translators either. Please use `NSLocalizedString` instead, even with SwiftUI code."
severity: error
excluded: '.*Widgets/.*'