.editorconfig 275 B

12345678910111213141516
  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. [*.{html,js,css,scss,xml}]
  8. indent_style = space
  9. indent_size = 4
  10. trim_trailing_whitespace = true
  11. [*.yml]
  12. indent_style = space
  13. indent_size = 2