.editorconfig 416 B

123456789101112131415161718192021222324
  1. root = true
  2. [*]
  3. charset = utf-8
  4. indent_style = space
  5. indent_size = 4
  6. # 换行符类型 = lf
  7. end_of_line = lf
  8. # 字符集=utf-8
  9. charset = utf-8
  10. # 删除行尾空格 = 是
  11. trim_trailing_whitespace = true
  12. # 插入最后一行=真
  13. insert_final_newline = true
  14. [*.md]
  15. # 删除行尾空格 = 否
  16. trim_trailing_whitespace = false
  17. [package.json]
  18. # 缩进样式=空格
  19. indent_style = space
  20. # 缩进大小=2
  21. indent_size = 4