.editorconfig 242 B

1234567891011121314
  1. root = true
  2. ; Unix-style newlines with a newline ending every file
  3. [*]
  4. end_of_line = lf
  5. insert_final_newline = true
  6. charset = utf-8
  7. ; JS
  8. [*.js]
  9. indent_style = space
  10. indent_size = 4
  11. trim_trailing_whitespace = true
  12. insert_final_newline = true