Skip to content

Commit 8858aee

Browse files
author
白唯
committed
fix(编辑器配置): 更新vscode 编辑器配置
1 parent 167b2a3 commit 8858aee

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

.editorconfig

+22-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1-
[*.{js,jsx,ts,tsx,vue}]
2-
indent_style = space
3-
indent_size = 2
4-
trim_trailing_whitespace = true
5-
insert_final_newline = true
1+
# top-most EditorConfig file 表示是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件
2+
root = true
3+
[*.{js,jsx,ts,tsx,vue}]
4+
charset = utf-8
5+
indent_style = tab
6+
indent_size = 2
7+
trim_trailing_whitespace = true
8+
insert_final_newline = true
9+
10+
# Unix-style newlines with a newline ending every file 对于所有的文件 始终在文件末尾插入一个新行
11+
[*]
12+
end_of_line = crlf
13+
insert_final_newline = true
14+
15+
# 对于所有的js文件,设置文件字符集为utf-8
16+
[*.js]
17+
charset = utf-8
18+
19+
# 设置所有JS,vue的缩进为
20+
[*.{js,vue}]
21+
22+
indent_style = tab
File renamed without changes.

0 commit comments

Comments
 (0)