.editorconfig 294 B

12345678910111213141516
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Newline ending every file and set default charset
  5. [*]
  6. end_of_line = lf
  7. insert_final_newline = true
  8. charset = utf-8
  9. # 2 space indentation
  10. [*.{js,ts,html,css}]
  11. indent_style = space
  12. indent_size = 2