-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: plop docs code path; changelog; feat: editorconfig
- Loading branch information
Showing
5 changed files
with
44 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# http://editorconfig.org | ||
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties | ||
|
||
# 表示是最顶层的配置文件, 发现设为true时, 才会停止查找.editorconfig文件 | ||
root = true | ||
|
||
[*] | ||
# tab space | ||
indent_style = tab | ||
|
||
indent_size = 2 | ||
# 设置换行符, 值为lf, cr, crlf | ||
end_of_line = lf | ||
charset = utf-8 | ||
|
||
# 用一个整数来设置tab缩进的列数。默认是indent_size | ||
tab_width = indent_size | ||
|
||
#是否删除行尾的空格 | ||
trim_trailing_whitespace = true | ||
|
||
#是否在文件的最后插入一个空行 | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
indent_size = 2 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = true | ||
|
||
[Makefile] | ||
indent_style = tab |
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
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,3 +1,5 @@ | ||
### 解题思路 or 实现原理 | ||
## 题目描述 | ||
|
||
### 参考 | ||
## 解题思路 or 实现原理 | ||
|
||
## 参考 |
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,8 +1,9 @@ | ||
## 题目描述 | ||
|
||
## 解题思路 or 实现原理 | ||
|
||
## 实现代码 | ||
|
||
<<< @/{{path}}/{{name}}/index.ts | ||
<<< @/{{templatePath}}/{{name}}/index.ts | ||
|
||
## 参考 | ||
|