.swiftlint.yml 373 B

12345678910111213141516171819
  1. included:
  2. - Sources
  3. # rule identifiers to exclude from running
  4. disabled_rules:
  5. - cyclomatic_complexity
  6. - variable_name
  7. - type_name
  8. - todo
  9. shorthand_operator: warning
  10. superfluous_disable_command: warning
  11. # some rules are only opt-in
  12. opt_in_rules:
  13. - empty_count
  14. # configurable rules can be customized from this configuration file
  15. line_length: 200