.editorconfig 398 B

12345678910111213141516171819202122
  1. root = true
  2. [*]
  3. # utf-8编码
  4. charset = utf-8
  5. # 控制换行类型(lf | cr | crlf)
  6. end_of_line = lf
  7. # 缩进风格(tab | space)
  8. indent_style = tab
  9. indent_size = 2
  10. tab_width = 2
  11. max_line_length = 150
  12. # [*.{yml,yaml,json}]
  13. # indent_style = space
  14. # indent_size = 2
  15. [*.{js,jsx,ts,tsx,vue}]
  16. # indent_style = space
  17. # indent_size = 2
  18. # 去除行首的任意空白字符
  19. trim_trailing_whitespace = true