-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.swiftlint.yml
executable file
·100 lines (100 loc) · 2.4 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
excluded:
- Carthage
- "fastlane/SnapshotHelper.swift"
opt_in_rules:
- empty_count
- first_where
- force_unwrapping
- overridden_super_call
- strict_fileprivate
- yoda_condition
- contains_over_range_nil_comparison
- enum_case_associated_values_count
- flatmap_over_map_reduce
- prefer_self_type_over_type_of_self
- array_init
# - closure_body_length disabled, because function-builders tend to be long
- closure_spacing
- collection_alignment
- contains_over_first_not_nil
- convenience_type
- empty_string
- empty_xctest_method
- explicit_init
- fallthrough
- function_default_parameter_at_end
- identical_operands
- implicit_return
- implicitly_unwrapped_optional
- joined_default_parameter
- legacy_random
- literal_expression_end_indentation
- lower_acl_than_parent
- modifier_order
- multiline_arguments
- multiline_function_chains
- multiline_parameters
- nimble_operator
- no_extension_access_modifier
- operator_usage_whitespace
- override_in_extension
- pattern_matching_keywords
- prefixed_toplevel_constant
- prohibited_super_call
- quick_discouraged_call
- quick_discouraged_focused_test
- quick_discouraged_pending_test
- redundant_nil_coalescing
- redundant_type_annotation
- required_enum_case
- single_test_class
- sorted_first_last
- sorted_imports
- static_operator
- switch_case_on_newline
- toggle_bool
- unavailable_function
- unneeded_parentheses_in_closure_argument
- vertical_parameter_alignment_on_call
- file_name
- last_where
- legacy_multiple
- nslocalizedstring_key
- object_literal
- private_action
- reduce_into
- xct_specific_matcher
- contains_over_filter_count
- contains_over_filter_is_empty
- discouraged_optional_boolean
- empty_collection_literal
- expiring_todo
- file_name_no_space
- optional_enum_case_matching
- prefer_zero_over_explicit_init
- raw_value_for_camel_cased_codable_enum
analyzer_rules:
- explicit_self
- unused_declaration
- unused_import
disabled_rules:
- line_length
- identifier_name
- nesting
custom_rules:
future:
included: ".*\\.swift"
name: "Future Task"
regex: "(FUTURE: )"
match_kinds:
- comment
# disable_print:
# included: ".*\\.swift"
# name: "print verboten"
# regex: "((\\bprint)|(Swift\\.print))\\s*\\("
# message: "Prefer os_log over print"
# disable_nslog:
# included: ".*\\.swift"
# name: "NSLog verboten"
# regex: "((\\bNSLog))\\s*\\("
# message: "Prefer os_log over NSLog"