-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.swiftlint.yml
41 lines (36 loc) · 854 Bytes
/
.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
# https://github.com/airbnb/swift
whitelist_rules:
- closure_spacing
- colon
- empty_enum_arguments
- fatal_error_message
# - force_cast
- force_try
# - force_unwrapping
# - implicitly_unwrapped_optional
- legacy_cggeometry_functions
- legacy_constant
- legacy_constructor
- legacy_nsgeometry_functions
- operator_usage_whitespace
- redundant_string_enum_value
- redundant_void_return
- return_arrow_whitespace
- trailing_newline
- type_name
- unused_closure_parameter
- unused_optional_binding
- vertical_whitespace
- void_return
- custom_rules
excluded:
- Pods
colon:
apply_to_dictionaries: false
indentation: 4
custom_rules:
no_objcMembers:
name: "@objcMembers"
regex: "@objcMembers"
message: "Explicitly use @objc on each member you want to expose to Objective-C"
severity: error