This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
.swiftlint.yml
88 lines (87 loc) · 2.1 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
disabled_rules:
- trailing_whitespace
- line_length
- nesting
opt_in_rules:
- toggle_bool
- static_operator
- redundant_objc_attribute
- legacy_hashing
- unused_control_flow_label
- duplicate_imports
- unused_setter_value
- nsobject_prefer_isequal
- no_fallthrough_only
- closure_end_indentation
- closure_spacing
- contains_over_first_not_nil
- empty_count
- explicit_init
- fatal_error_message
- first_where
- force_unwrapping
- implicit_return
- implicitly_unwrapped_optional
- joined_default_parameter
- let_var_whitespace
- literal_expression_end_indentation
- multiline_parameters
- operator_usage_whitespace
- overridden_super_call
- override_in_extension
- pattern_matching_keywords
- private_action
- private_outlet
- prohibited_super_call
- redundant_nil_coalescing
- required_enum_case
- single_test_class
- sorted_first_last
- sorted_imports
- switch_case_on_newline
- unneeded_parentheses_in_closure_argument
- vertical_parameter_alignment_on_call
- yoda_condition
- modifier_order
- empty_xctest_method
- convenience_type
- conditional_returns_on_newline
excluded:
- Pods
- SwiftLnd/Generated
- SwiftBTC/Example
- Library/Generated
- vendor
- fastlane/SnapshotHelper.swift
identifier_name:
excluded:
- id
- t
conditional_returns_on_newline:
if_only: true
custom_rules:
callback_naming:
name: "Callback naming"
regex: "callback:"
message: Prefer 'completion' over 'callback'"
severity: warning
localized_string:
name: "Avoid NSLocalizedString"
regex: "NSLocalizedString"
message: "Use .localized instead"
severity: error
cast_to_localized_error:
name: "Cast to LocalizedError"
regex: "as\\? LocalizedError"
message: "don't cast to LocalizedError. Use .localizedDescription"
severity: error
localizable_error:
name: "Localizable Error"
regex: "Error.*:.*Localizable"
message: "Errors should be LocalizedError"
severity: error
print:
name: "Logging Error"
regex: "print\\("
message: "Use Logger.info() instead"
severity: warning