.editorconfig 405 B

1234567891011121314151617181920212223242526
  1. # editorconfig.org
  2. root = true
  3. # Unix-style newlines with a newline ending every file
  4. [*]
  5. indent_style = space
  6. indent_size = 2
  7. end_of_line = lf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. [*.md]
  11. trim_trailing_whitespace = false
  12. [*.{html,js,ts,css,less,scss,xml,json}]
  13. indent_style = space
  14. indent_size = 2
  15. [*.yml]
  16. indent_style = space
  17. indent_size = 2
  18. [jdists]
  19. indent_style = space
  20. indent_size = 2