.editorconfig 310 B

12345678910111213141516171819202122
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. insert_final_newline = true
  5. trim_trailing_whitespace = true
  6. indent_style = space
  7. [Makefile]
  8. indent_style = tab
  9. [*.{js,py}]
  10. charset = utf-8
  11. [*.{py,html,rst,md}]
  12. indent_size = 4
  13. [*.{js,ts,tsx,json,yml,yaml,css,scss}]
  14. indent_size = 2
  15. [*.md]
  16. trim_trailing_whitespace = false