Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 03:49:19 +08:00
v3-admin-vite/.editorconfig

25 lines
627 B
INI
Raw Normal View History

2024-11-21 20:14:55 +08:00
# 配置项文档https://editorconfig.org修改配置后重启编辑器
2023-06-20 09:13:11 +08:00
2024-11-21 20:14:55 +08:00
## 告知 EditorConfig 插件,当前即是根文件
2022-04-20 23:15:39 +08:00
root = true
2024-11-21 20:14:55 +08:00
## 适用全部文件
2022-04-20 23:15:39 +08:00
[*]
2024-11-21 20:14:55 +08:00
### 设置字符集
2022-04-20 23:15:39 +08:00
charset = utf-8
2024-11-21 20:14:55 +08:00
### 缩进风格 space | tab建议 space
2022-04-20 23:15:39 +08:00
indent_style = space
2024-11-21 20:14:55 +08:00
### 缩进的空格数
2022-04-20 23:15:39 +08:00
indent_size = 2
2024-11-21 20:14:55 +08:00
### 换行符类型 lf | cr | crlf一般都是设置为 lf
2022-04-20 23:15:39 +08:00
end_of_line = lf
2024-11-21 20:14:55 +08:00
### 是否在文件末尾插入空白行
2022-04-20 23:15:39 +08:00
insert_final_newline = true
2024-11-21 20:14:55 +08:00
### 是否删除一行中的前后空格
2022-04-20 23:15:39 +08:00
trim_trailing_whitespace = true
2024-11-21 20:14:55 +08:00
## 适用 .md 文件
2022-04-20 23:15:39 +08:00
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false