.editorconfig 364 B

123456789101112131415161718192021222324252627
  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. [*.py]
  10. charset = utf-8
  11. indent_size = 4
  12. max_line_length = 120
  13. [*.js]
  14. charset = utf-8
  15. [*.{html,rst,md}]
  16. indent_size = 4
  17. [*.{js,ts,tsx,json,yml,yaml,css,scss}]
  18. indent_size = 2
  19. [*.md]
  20. trim_trailing_whitespace = false