.editorconfig 246 B

12345678910111213141516171819
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. insert_final_newline = true
  5. trim_trailing_whitespace = true
  6. charset = utf-8
  7. [*.json]
  8. indent_style = space
  9. indent_size = 2
  10. [*.js]
  11. indent_style = space
  12. indent_size = 2
  13. [*.ts]
  14. indent_style = space
  15. indent_size = 2