build(deps):增加一些基本的项目配置和基础代码结构。

This commit is contained in:
徐涛
2023-03-08 08:44:52 +08:00
parent 715da9c889
commit f63e4f1e6f
16 changed files with 880 additions and 123 deletions

20
.editorconfig Normal file
View File

@@ -0,0 +1,20 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
spaces_around_operators = true
[*.rs]
indent_size = 4
indent_style = space
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
spaces_around_operators = true