.swiftlint.yml 798 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. disabled_rules:
  2. - type_body_length
  3. - file_length
  4. - function_body_length
  5. - orphaned_doc_comment
  6. - vertical_parameter_alignment # Many false positives because of tabs
  7. opt_in_rules:
  8. - empty_count
  9. - overridden_super_call
  10. - redundant_nil_coalescing
  11. - private_outlet
  12. - operator_usage_whitespace
  13. - first_where
  14. - number_separator
  15. - prohibited_super_call
  16. - fatal_error_message
  17. - closure_spacing
  18. - object_literal
  19. - attributes
  20. - toggle_bool
  21. - collection_alignment
  22. - closure_end_indentation
  23. - no_extension_access_modifier
  24. - implicit_return
  25. custom_rules:
  26. indent_by_spaces:
  27. name: "Indentation Style"
  28. regex: "(\t)"
  29. message: "Please use spaces for indentation, not tabs."
  30. severity: warning
  31. indentation: spaces
  32. identifier_name:
  33. excluded:
  34. - id