.editorconfig 206 B

12345678910111213
  1. ; top-most EditorConfig file
  2. root = true
  3. ; Unix-style newlines
  4. [*]
  5. end_of_line = lf
  6. charset = utf-8
  7. [*.php]
  8. indent_style = space
  9. indent_size = 4
  10. insert_final_newline = true
  11. trim_trailing_whitespace = true