We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 167b2a3 commit 8858aeeCopy full SHA for 8858aee
.editorconfig
@@ -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
+# top-most EditorConfig file 表示是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件
+root = true
+[*.{js,jsx,ts,tsx,vue}]
+charset = utf-8
+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
14
15
+# 对于所有的js文件,设置文件字符集为utf-8
16
+[*.js]
17
18
19
+# 设置所有JS,vue的缩进为
20
+[*.{js,vue}]
21
22
.github/workflow/deploy.yml .github/workflows/deploy.yml
0 commit comments