LEFT | RIGHT |
1 disabled_rules: # rule identifiers to exclude from running | 1 disabled_rules: # rule identifiers to exclude from running |
2 - notification_center_detachment | 2 - notification_center_detachment |
3 opt_in_rules: # some rules are only opt-in | 3 opt_in_rules: # some rules are only opt-in |
4 - attributes | 4 - attributes |
5 - closure_end_indentation | 5 - closure_end_indentation |
6 - fatal_error_message | 6 - fatal_error_message |
7 - joined_default_parameter | 7 - joined_default_parameter |
8 - let_var_whitespace | 8 - let_var_whitespace |
9 - multiline_parameters | 9 - multiline_parameters |
10 - operator_usage_whitespace | 10 - operator_usage_whitespace |
11 - overridden_super_call | 11 - overridden_super_call |
12 - prohibited_super_call | 12 - prohibited_super_call |
13 - redundant_nil_coalescing | 13 - redundant_nil_coalescing |
14 - single_test_class | 14 - single_test_class |
15 - sorted_imports | 15 - sorted_imports |
16 - strict_fileprivate | |
17 - switch_case_on_newline | 16 - switch_case_on_newline |
18 - unneeded_parentheses_in_closure_argument | 17 - unneeded_parentheses_in_closure_argument |
19 - vertical_parameter_alignment_on_call | 18 - vertical_parameter_alignment_on_call |
20 # Find all the available rules by running: | 19 # Find all the available rules by running: |
21 # swiftlint rules | 20 # swiftlint rules |
22 excluded: # paths to ignore during linting. Takes precedence over `included`. | 21 excluded: # paths to ignore during linting. Takes precedence over `included`. |
23 - Carthage | 22 - Carthage |
24 - Resources | 23 - Resources |
25 - Translations | 24 - Translations |
26 line_length: 150 | 25 line_length: 150 |
| 26 large_tuple: |
| 27 warning: 3 |
LEFT | RIGHT |