.editorconfig 285 B

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