forked from element-hq/element-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.swiftlint.yml
executable file
·64 lines (54 loc) · 1.19 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
58
59
60
61
62
63
64
# rule identifiers to exclude from running
disabled_rules:
- trailing_whitespace
- todo
- conditional_binding_cascade
- mark
- vertical_whitespace
- syntactic_sugar
- unused_closure_parameter
- closure_parameter_position
- redundant_string_enum_value
- large_tuple
- shorthand_operator
- vertical_parameter_alignment
- identifier_name
# some rules are only opt-in
opt_in_rules:
- force_unwrapping
- private_action
- explicit_init
# paths to include during linting. `--path` is ignored if present.
included:
- Riot
# paths to ignore during linting. Takes precedence over `included`.
excluded:
- Carthage
- Pods
- Riot/Generated/
line_length:
warning: 250
error: 1000
file_length:
warning: 700
error: 1000
type_body_length:
warning: 700
error: 1000
function_parameter_count:
warning: 7
error: 10
cyclomatic_complexity:
ignores_case_statements: true
warning: 20
error: 25
function_body_length:
warning: 100
error: 150
# naming rules can set warnings/errors for min_length and max_length
# additionally they can set excluded names
type_name:
min_length: 3 # only warning
max_length: # warning and error
warning: 150
error: 1000