-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
4c0fcd0473a7805ff0a82aabe29d05d03e795399
- Loading branch information
pddzl
committed
Jun 25, 2023
1 parent
8f7c23b
commit 9f8f55b
Showing
18 changed files
with
171 additions
and
190 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,13 +1,24 @@ | ||
# 配置项文档:https://editorconfig.org/ | ||
|
||
# 告知 EditorConfig 插件,当前即是根文件 | ||
root = true | ||
|
||
# 适用全部文件 | ||
[*] | ||
## 设置字符集 | ||
charset = utf-8 | ||
## 缩进风格 space | tab,建议 space | ||
indent_style = space | ||
## 缩进的空格数(修改这里的话需要将 prettier.config.js 和 .vscode -> settings.json 也同步修改) | ||
indent_size = 2 | ||
## 换行符类型 lf | cr | crlf,一般都是设置为 lf | ||
end_of_line = lf | ||
## 是否在文件末尾插入空白行 | ||
insert_final_newline = true | ||
## 是否删除一行中的前后空格 | ||
trim_trailing_whitespace = true | ||
|
||
# 适用 .md 文件 | ||
[*.md] | ||
insert_final_newline = false | ||
trim_trailing_whitespace = false |
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ node_modules | |
dist | ||
dist-ssr | ||
*.local | ||
.npmrc |
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
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
Oops, something went wrong.