.editorconfig 582 B

1234567891011121314151617181920
  1. # See https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
  2. # for all available properties.
  3. # Top-most EditorConfig file for the firebase-ios-sdk repo.
  4. root = true
  5. # Defaults for all files
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. # ObjC and Swift files
  12. # See https://developer.apple.com/documentation/xcode-release-notes/xcode-16-release-notes#New-Features-in-Xcode-16-Beta
  13. # for the subset of properties supported by Xcode.
  14. [*.{h,m,mm,swift}]
  15. indent_style = space
  16. indent_size = 2
  17. max_line_length = 100