forked from BendingSpoons/tempura-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.swiftlint.yml
53 lines (47 loc) · 886 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
45
46
47
48
49
50
51
52
53
included:
- Tempura
- Demo
excluded:
- type_name
- vertical_whitespace
whitelist_rules:
- closing_brace
- closure_spacing
- colon
- comma
- control_statement
- empty_count
- explicit_init
- file_length
- function_body_length
- implicit_getter
- leading_whitespace
- legacy_cggeometry_functions
- legacy_constant
- legacy_constructor
- legacy_nsgeometry_functions
- line_length
- mark
- opening_brace
- operator_whitespace
- overridden_super_call
- private_unit_test
- redundant_nil_coalescing
- return_arrow_whitespace
- statement_position
- switch_case_on_newline
- syntactic_sugar
- todo
- trailing_comma
- trailing_newline
- trailing_semicolon
- type_body_length
- variable_name
line_length: 200
file_length:
warning: 800
function_body_length:
warning: 100
error: 200
variable_name:
min_length: 1