-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.swiftlint.yml
52 lines (49 loc) · 1.01 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
disabled_rules:
- line_length
- valid_ibinspectable
opt_in_rules:
- empty_count
- array_init
- closure_end_indentation
- closure_spacing
- contains_over_first_not_nil
- explicit_top_level_acl
- fallthrough
- fatal_error_message
- file_name
- first_where
- force_unwrapping
- implicit_return
- implicitly_unwrapped_optional
- lower_acl_than_parent
- missing_docs
- modifier_order
- multiline_function_chains
- multiline_parameters
- nimble_operator
- operator_usage_whitespace
- overridden_super_call
- private_action
- private_outlet
- prohibited_super_call
- redundant_type_annotation
- sorted_first_last
- sorted_imports
- superfluous_disable_command
- trailing_closure
- unavailable_function
- unneeded_parentheses_in_closure_argument
- unused_import
- unused_optional_binding
excluded:
- Pods
- CauliTests
- Example
- Draft.playground
- Package.swift
force_cast: warning
force_try: warning
file_length:
warning: 500
error: 1200
reporter: "xcode"