.editorconfig 282 B

123456789101112131415
  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,scss}]
  10. indent_style = space
  11. indent_size = 2