.editorconfig 368 B

123456789101112131415161718192021222324
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. [*.{py,rst,ini,oml,gradle}]
  8. indent_style = space
  9. indent_size = 4
  10. [*.{html,css,scss,json,yml,svg,xml,ttl}]
  11. indent_style = space
  12. indent_size = 2
  13. max_line_length = 140
  14. [*.md]
  15. trim_trailing_whitespace = false
  16. [*.project]
  17. indent_style = space
  18. indent_size = 2