.editorconfig 520 B

12345678910111213141516171819202122
  1. # This file is automatically generated by a `metapak`
  2. # module. Do not change it elsewhere, changes would
  3. # be overridden.
  4. # EditorConfig is awesome: http://EditorConfig.org
  5. # top-most EditorConfig file
  6. root = true
  7. # Unix-style newlines with a newline ending every file
  8. [*]
  9. end_of_line = lf
  10. insert_final_newline = true
  11. # Matches multiple files with brace expansion notation
  12. # Set default charset
  13. # 2 space indentation
  14. [*.{js,css}]
  15. charset = utf-8
  16. indent_style = space
  17. trim_trailing_whitespace = true
  18. indent_size = 2