forked from ChaosCoder/ConvAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swiftlint.yml
44 lines (41 loc) · 889 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
42
43
44
opt_in_rules:
- array_init
- attributes
- closure_end_indentation
- closure_spacing
- contains_over_first_not_nil
- convenience_type
- empty_count
- empty_xctest_method
- identical_operands
- legacy_random
- literal_expression_end_indentation
- modifier_order
- multiline_arguments
- operator_usage_whitespace
- override_in_extension
- toggle_bool
- unneeded_parentheses_in_closure_argument
- unused_import
- duplicate_imports
- yoda_condition
- xct_specific_matcher
- allow_zero_lintable_files
disabled_rules:
- line_length
- file_length
- function_body_length
- function_parameter_count
- type_body_length
- identifier_name
- cyclomatic_complexity
- large_tuple
- nesting
- no_space_in_method_call
- type_name
trailing_whitespace:
ignores_empty_lines: true
ignores_comments: true
excluded:
- Pods
- ConvAPITests