-
Notifications
You must be signed in to change notification settings - Fork 13
/
.swiftlint.yml
68 lines (52 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
opt_in_rules:
- file_header
disabled_rules:
- cyclomatic_complexity
included:
- Sources
- Tests
excluded:
- Sources/SundayServer/Routable.swift
opt_in_rules:
- file_header
vertical_whitespace:
max_empty_lines: 3
nesting:
type_level: 2
statement_position:
statement_mode: uncuddled_else
identifier_name:
excluded: [id, ok, in, is, at, of]
trailing_comma:
mandatory_comma: true
file_length:
warning: 1500
error: 3000
ignore_comment_only_lines: true
line_length:
- 150
- 175
function_parameter_count:
- 8
- 11
function_body_length:
- 300
- 350
type_body_length:
- 700
- 1000
large_tuple:
- 4
- 5
file_header:
required_pattern: |-
\Q//
// \E[a-zA-Z0-9-_.]+\Q
// PotentCodables
//
// Copyright © \E\d{4}\Q Outfox, inc.
//
//
// Distributed under the MIT License, See LICENSE for details.
//
\E