forked from leits/MeetingBar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.swiftlint.yml
More file actions
57 lines (48 loc) · 926 Bytes
/
.swiftlint.yml
File metadata and controls
57 lines (48 loc) · 926 Bytes
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
reporter: "github-actions-logging"
included:
- MeetingBar
- MeetingBarTests
excluded:
- Carthage
- Pods
- .build
- build
- DerivedData
disabled_rules:
- file_length
- function_body_length
- type_body_length
- type_name
- multiple_closures_with_trailing_closure
- force_cast
- force_try
- force_unwrapping
opt_in_rules:
- number_separator
- empty_count
- fatal_error_message
- joined_default_parameter
- redundant_nil_coalescing
- redundant_void_return
- trailing_comma
- yoda_condition
analyzer_rules:
- unused_declaration
- unused_import
number_separator:
minimum_length: 5
line_length:
warning: 200
error: 250
cyclomatic_complexity:
warning: 15
identifier_name:
min_length:
warning: 2
error: 2
max_length:
warning: 100
error: 100
allowed_symbols: ["_"]
validates_start_with_lowercase: warning
excluded: [x, y, a, b, x1, x2, y1, y2]