-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.swiftlint.yml
54 lines (50 loc) · 1.06 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
opt_in_rules:
- array_init
- attributes
- closure_end_indentation
- closure_spacing
- contains_over_first_not_nil
- convenience_type
- empty_count
- empty_xctest_method
- identical_operands
- legacy_random
- literal_expression_end_indentation
- modifier_order
- multiline_arguments
- operator_usage_whitespace
- override_in_extension
- toggle_bool
- unneeded_parentheses_in_closure_argument
- unused_import
- duplicate_imports
- yoda_condition
- xct_specific_matcher
disabled_rules:
- line_length
- file_length
- function_body_length
- function_parameter_count
- type_body_length
- identifier_name
- cyclomatic_complexity
- large_tuple
- nesting
- no_space_in_method_call
- type_name
trailing_whitespace:
ignores_empty_lines: true
ignores_comments: true
excluded:
- .swift-packages
- Server
- CnC
- TICETestsHelper
- TICEUnitTests
- TICEIntegrationTests
- TICEUITests
- TICESnapshots
- fastlane/SnapshotHelper.swift
- TICE/Managers/Migration Management
- TICE/Mocks
allow_zero_lintable_files: true