.editorconfig 426 B

12345678910111213141516171819
  1. # We use EditorConfig to standardize settings between contributors
  2. # See http://editorconfig.org for more info and plugin downloads
  3. # This is the only config file
  4. root = true
  5. # Unix-style newlines with with new lines at the end
  6. [*]
  7. end_of_line = lf
  8. insert_final_newline = true
  9. # Use utf-8 for character encoding
  10. [*.{js, json, yml}]
  11. charset = utf-8
  12. # 2 space indents
  13. [*.{js, json, yml}]
  14. indent_style = space
  15. indent_size = 2