forked from vinivendra/Gryphon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.swiftlint.yml
57 lines (55 loc) · 1.16 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
disabled_rules:
- closure_parameter_position
- unused_setter_value
- implicit_return
- cyclomatic_complexity
- file_length
- force_cast
- force_try
- function_body_length
- function_parameter_count
- identifier_name
- large_tuple
- opening_brace
- statement_position
- todo
- type_body_length
- void_return
- modifier_order
- multiline_parameters
- multiline_arguments
- type_name
- literal_expression_end_indentation
- for_where
- closure_end_indentation
- vertical_parameter_alignment_on_call
- reduce_boolean
opt_in_rules:
- attributes
- closure_end_indentation
- closure_spacing
- conditional_returns_on_newline
- contains_over_first_not_nil
- empty_count
- explicit_init
- fallthrough
- fatal_error_message
- first_where
- for_where
- implicit_return
- literal_expression_end_indentation
- modifier_order
- multiline_arguments
- multiline_parameters
- number_separator
- operator_usage_whitespace
- sorted_first_last
- vertical_parameter_alignment_on_call
included:
- Sources/GryphonLib
- Tests/GryphonLibTests
excluded:
- Examples
line_length: 100
trailing_comma:
mandatory_comma: true