feat: init project

This commit is contained in:
秋水浮尘
2023-10-06 22:43:22 +08:00
parent 95ce141489
commit 05284248dd
25 changed files with 4120 additions and 2 deletions

12
.editorconfig Normal file
View File

@@ -0,0 +1,12 @@
root = true # 控制配置文件 .editorconfig 是否生效的字段
[**] # 匹配全部文件
indent_style = space # 缩进风格可选spacetab
indent_size = 2 # 缩进的空格数
charset = utf-8 # 设置字符集
trim_trailing_whitespace = true # 删除一行中的前后空格
insert_final_newline = true # 设为true表示使文件以一个空白行结尾
end_of_line = lf
[**.md] # 匹配md文件
trim_trailing_whitespace = false