.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. insert_final_newline = true
  7. charset = utf-8
  8. # 2 space indentation
  9. [*.{js,ts,html,css}]
  10. end_of_line = lf
  11. indent_style = space
  12. indent_size = 2