.editorconfig 491 B

1234567891011121314151617181920212223242526
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. root = true
  3. [*]
  4. # 基础编码设置
  5. charset = utf-8
  6. end_of_line = lf
  7. indent_style = space
  8. indent_size = 4
  9. # 格式规范
  10. trim_trailing_whitespace = true
  11. insert_final_newline = true
  12. max_line_length = 120
  13. # 缩进规则
  14. [*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue,html,css,scss,sass,less,styl,yml,yaml,,.eslintrc}]
  15. indent_size = 2
  16. [*.{json,package.json}]
  17. indent_size = 2
  18. [*.md]
  19. trim_trailing_whitespace = false
  20. [Makefile]
  21. indent_style = tab