.editorconfig 452 B

1234567891011121314151617181920
  1. # Editor configuration, see https://editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. indent_style = space
  6. indent_size = 2
  7. insert_final_newline = true
  8. spaces_around_operators = true
  9. trim_trailing_whitespace = true
  10. [*.ts]
  11. quote_type = single
  12. [*.{html,less,css,json}] # 对所有 html, less, css, json 文件生效
  13. quote_type = double # 字符串使用双引号
  14. [*.md]
  15. max_line_length = off
  16. trim_trailing_whitespace = false