.editorconfig 319 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. charset = utf-8
  5. trim_trailing_whitespace = true
  6. insert_final_newline = false
  7. [*.{json,js,css}]
  8. indent_style = space
  9. indent_size = 2
  10. [*.md]
  11. indent_style = space
  12. indent_size = 4
  13. [*.{rs,toml}]
  14. indent_style = space
  15. indent_size = 4
  16. insert_final_newline = true
  17. [*.lua]
  18. indent_style = tab