1
0

.swiftlint.yml 475 B

12345678910111213141516171819202122
  1. identifier_name:
  2. min_length: # only min_length
  3. warning: 2
  4. error: 2 # only error
  5. excluded: # excluded via string array
  6. - ok
  7. - Name
  8. - DEFAULT_MIME_TYPE
  9. - sin_port
  10. - no_sig_pipe
  11. disabled_rules:
  12. - line_length
  13. - statement_position
  14. - trailing_whitespace
  15. excluded: # paths to ignore during linting. Takes precedence over `included`.
  16. - LinuxMain.swift
  17. - XCode/Tests/XCTestManifests.swift
  18. - Tests/XCTestManifests.swift
  19. - Package.swift