项目常用风格:
[*.{js,jsx,ts,tsx,vue}] // 指定生效类型文件
charset=utf-8 // 编码风格选utf-8避免混乱
indent_style = space // 缩进风格为空格
indent_size = 2 // 缩进2格
trim_trailing_whitespace = true // 删除末尾空行
insert_final_newline = true // 文件末尾插入空行
2024-01-11 10:49:22