.swiftlint.yml 434 B

1234567891011121314151617181920212223242526
  1. disabled_rules:
  2. - cyclomatic_complexity
  3. - file_length
  4. - function_body_length
  5. - identifier_name
  6. - line_length
  7. - shorthand_operator
  8. - trailing_whitespace
  9. - type_body_length
  10. - type_name
  11. - vertical_whitespace
  12. - void_return
  13. excluded:
  14. - Pods
  15. - Carthage
  16. # This is a strange one, since it also includes init functions
  17. function_parameter_count:
  18. warning: 8
  19. error: 8
  20. variable_name:
  21. excluded:
  22. - ok
  23. - vc