bin
doc
running
sql
stdiet-admin
stdiet-common
stdiet-custom
stdiet-framework
stdiet-generator
stdiet-quartz
stdiet-system
stdiet-ui
bin
build
lib
public
src
.editorconfig
.env.development
.env.production
.env.staging
.eslintignore
.eslintrc.js
.gitignore
README.md
babel.config.js
jsconfig.json
package.json
vue.config.js
.DS_Store
.gitignore
LICENSE
README.md
pom.xml
ry.sh
23 lines
514 B
INI
23 lines
514 B
INI
# 告诉EditorConfig插件,这是根文件,不用继续往上查找
|
||
root = true
|
||
|
||
# 匹配全部文件
|
||
[*]
|
||
# 设置字符集
|
||
charset = utf-8
|
||
# 缩进风格,可选space、tab
|
||
indent_style = space
|
||
# 缩进的空格数
|
||
indent_size = 2
|
||
# 结尾换行符,可选lf、cr、crlf
|
||
end_of_line = lf
|
||
# 在文件结尾插入新行
|
||
insert_final_newline = true
|
||
# 删除一行中的前后空格
|
||
trim_trailing_whitespace = true
|
||
|
||
# 匹配md结尾的文件
|
||
[*.md]
|
||
insert_final_newline = false
|
||
trim_trailing_whitespace = false
|