|
| 1 | +excluded: |
| 2 | + - ${PWD}/Carthage |
| 3 | + - ${PWD}/Pods |
| 4 | + - ${PWD}/DerivedData |
| 5 | + - Tuist |
| 6 | + - Frameworks |
| 7 | + - Project |
| 8 | + - ./**/*API.swift |
| 9 | + - ./**/AppDelegate.swift |
| 10 | + - ./**/SceneDelegate.swift |
| 11 | + - Plugins |
| 12 | + - Project.swift |
| 13 | + |
| 14 | +disabled_rules: |
| 15 | + - discarded_notification_center_observer |
| 16 | + - notification_center_detachment |
| 17 | + - orphaned_doc_comment |
| 18 | + - todo |
| 19 | + - unused_capture_list |
| 20 | + |
| 21 | +opt_in_rules: |
| 22 | + - array_init |
| 23 | + - attributes |
| 24 | + - closure_end_indentation |
| 25 | + - closure_spacing |
| 26 | + - collection_alignment |
| 27 | + - colon # promote to error |
| 28 | + - convenience_type |
| 29 | + - discouraged_object_literal |
| 30 | + - empty_collection_literal |
| 31 | + - empty_count |
| 32 | + - empty_string |
| 33 | + - enum_case_associated_values_count |
| 34 | + - fatal_error_message |
| 35 | + - first_where |
| 36 | + - force_unwrapping |
| 37 | + - implicitly_unwrapped_optional |
| 38 | + - indentation_width |
| 39 | + - last_where |
| 40 | + - legacy_random |
| 41 | + - literal_expression_end_indentation |
| 42 | + - multiline_arguments |
| 43 | + - multiline_function_chains |
| 44 | + - multiline_literal_brackets |
| 45 | + - multiline_parameters |
| 46 | + - multiline_parameters_brackets |
| 47 | + - operator_usage_whitespace |
| 48 | + - overridden_super_call |
| 49 | + - pattern_matching_keywords |
| 50 | + - prefer_self_type_over_type_of_self |
| 51 | + - redundant_nil_coalescing |
| 52 | + - redundant_type_annotation |
| 53 | + - strict_fileprivate |
| 54 | + - toggle_bool |
| 55 | + - trailing_closure |
| 56 | + - unneeded_parentheses_in_closure_argument |
| 57 | + - unused_import |
| 58 | + - vertical_whitespace_closing_braces |
| 59 | + - vertical_whitespace_opening_braces |
| 60 | + - yoda_condition |
| 61 | + |
| 62 | + |
| 63 | +custom_rules: |
| 64 | + array_constructor: |
| 65 | + name: "Array/Dictionary initializer" |
| 66 | + regex: '[let,var] .+ = (\[.+\]\(\))' |
| 67 | + capture_group: 1 |
| 68 | + message: "Use explicit type annotation when initializing empty arrays and dictionaries" |
| 69 | + severity: warning |
| 70 | + |
| 71 | + |
| 72 | +attributes: |
| 73 | + always_on_same_line: |
| 74 | + - "@IBSegueAction" |
| 75 | + - "@IBAction" |
| 76 | + - "@NSManaged" |
| 77 | + - "@objc" |
| 78 | + |
| 79 | +force_cast: warning |
| 80 | +force_try: warning |
| 81 | +function_body_length: |
| 82 | + warning: 60 |
| 83 | + |
| 84 | +legacy_hashing: error |
| 85 | + |
| 86 | +identifier_name: |
| 87 | + excluded: |
| 88 | + - i |
| 89 | + - id |
| 90 | + - x |
| 91 | + - y |
| 92 | + - z |
| 93 | + |
| 94 | +indentation_width: |
| 95 | + indentation_width: 2 |
| 96 | + |
| 97 | +line_length: |
| 98 | + ignores_urls: true |
| 99 | + ignores_function_declarations: true |
| 100 | + ignores_comments: true |
| 101 | + |
| 102 | +multiline_arguments: |
| 103 | + first_argument_location: next_line |
| 104 | + only_enforce_after_first_closure_on_first_line: true |
| 105 | + |
| 106 | +private_over_fileprivate: |
| 107 | + validate_extensions: true |
| 108 | + |
| 109 | +trailing_whitespace: |
| 110 | + ignores_empty_lines: false |
| 111 | + ignores_comments: true |
| 112 | + |
| 113 | +vertical_whitespace: |
| 114 | + max_empty_lines: 2 |
0 commit comments