-
Notifications
You must be signed in to change notification settings - Fork 19
/
.swiftlint.yml
118 lines (104 loc) · 2.8 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
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
only_rules:
# Spacing
- closing_brace
- closure_spacing
- comma
- colon
# Whitespace (Xcode configuration)
- leading_whitespace
#- let_var_whitespace # Disabled due to https://github.com/realm/SwiftLint/issues/2980
- operator_whitespace
- operator_usage_whitespace
- return_arrow_whitespace
- trailing_whitespace
- attributes
# Empty
- empty_collection_literal
- empty_count
- empty_string
# Force
- force_cast
- force_try
- force_unwrapping
# Closures
- closure_body_length
- closure_end_indentation
- closure_parameter_position
# Style
# - attributes - disabled due to rule issue. See: https://github.com/okta/okta-devices-swift/pull/93
- collection_alignment
- control_statement
- file_header
# Order
#- file_types_order - disabled due to the impracticality of private/fileprivate usages
- modifier_order
- protocol_property_accessors_order
# Lint
- anyobject_protocol
- class_delegate_protocol
- cyclomatic_complexity
# Override rule to return as warning/error
closing_brace:
severity: error
closure_spacing:
severity: error
comma:
severity: error
colon:
severity: error
leading_whitespace:
severity: error
operator_whitespace:
severity: error
operator_usage_whitespace:
severity: error
return_arrow_whitespace:
severity: error
trailing_whitespace:
severity: error
ignores_empty_lines: true
empty_collection_literal:
severity: error
empty_count:
severity: error
empty_string:
severity: error
closure_body_length:
warning: 70
error: 100
closure_end_indentation:
severity: error
closure_parameter_position:
severity: error
attributes:
severity: error
collection_alignment:
severity: error
control_statement:
severity: error
file_header:
severity: error
required_pattern: |
\/\/
\/\/ Copyright \(c\) \d{4}(-Present)?, Okta, Inc\. and\/or its affiliates\. All rights reserved\.
\/\/ The Okta software accompanied by this notice is provided pursuant to the Apache License, Version 2\.0 \(the "License."\)
\/\/
\/\/ You may obtain a copy of the License at http:\/\/www\.apache\.org\/licenses\/LICENSE-2\.0\.
\/\/ Unless required by applicable law or agreed to in writing, software
\/\/ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
\/\/ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied\.
\/\/
\/\/ See the License for the specific language governing permissions and limitations under the License\.
\/\/
anyobject_protocol:
severity: error
class_delegate_protocol:
severity: error
cyclomatic_complexity:
warning: 20
error: 30
# Paths to ignore
excluded:
- Pods
- Tests
- Example