.editorconfig 483 B

1234567891011121314151617181920212223
  1. # EditorConfig helps developers define and maintain consistent
  2. # coding styles between different editors and IDEs
  3. # editorconfig.org
  4. root = true
  5. [*]
  6. # We recommend you to keep these unchanged
  7. end_of_line = lf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. # Change these settings to your own preference
  12. indent_style = space
  13. indent_size = 4
  14. [*.{ts,tsx,js,jsx,json,css,scss,yml,yaml,html,vue}]
  15. indent_size = 2
  16. [*.md]
  17. trim_trailing_whitespace = false