.editorconfig 483 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. charset = utf-8
  5. trim_trailing_whitespace = true
  6. insert_final_newline = true
  7. [**.js]
  8. indent_style = space
  9. indent_size = 4
  10. [**.css]
  11. indent_style = space
  12. indent_size = 4
  13. [**.less]
  14. indent_style = space
  15. indent_size = 4
  16. [**.styl]
  17. indent_style = space
  18. indent_size = 4
  19. [**.html]
  20. indent_style = space
  21. indent_size = 4
  22. [**.tpl]
  23. indent_style = space
  24. indent_size = 4
  25. [**.json]
  26. indent_style = space
  27. indent_size = 4
  28. [*.md]
  29. trim_trailing_whitespace = false