.editorconfig 203 B

123456789101112131415
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. [*.{js,ts,html}]
  7. charset = utf-8
  8. indent_style = tab
  9. indent_size = 2
  10. [*.{js,ts}]
  11. trim_trailing_whitespace = true