-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
白唯
committed
Oct 13, 2020
1 parent
167b2a3
commit 8858aee
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,22 @@ | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
# top-most EditorConfig file 表示是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件 | ||
root = true | ||
[*.{js,jsx,ts,tsx,vue}] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
# Unix-style newlines with a newline ending every file 对于所有的文件 始终在文件末尾插入一个新行 | ||
[*] | ||
end_of_line = crlf | ||
insert_final_newline = true | ||
|
||
# 对于所有的js文件,设置文件字符集为utf-8 | ||
[*.js] | ||
charset = utf-8 | ||
|
||
# 设置所有JS,vue的缩进为 | ||
[*.{js,vue}] | ||
|
||
indent_style = tab |
File renamed without changes.