1234567891011121314151617181920212223242526272829303132333435363738 |
- disabled_rules:
- - type_body_length
- - file_length
- - function_body_length
- - orphaned_doc_comment
- - vertical_parameter_alignment # Many false positives because of tabs
- opt_in_rules:
- - empty_count
- - overridden_super_call
- - redundant_nil_coalescing
- - private_outlet
- - operator_usage_whitespace
- - first_where
- - number_separator
- - prohibited_super_call
- - fatal_error_message
- - closure_spacing
- - object_literal
- - attributes
- - toggle_bool
- - collection_alignment
- - closure_end_indentation
- - no_extension_access_modifier
- - implicit_return
- custom_rules:
- indent_by_spaces:
- name: "Indentation Style"
- regex: "(\t)"
- message: "Please use spaces for indentation, not tabs."
- severity: warning
- indentation: spaces
- identifier_name:
- excluded:
- - id
|