Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
.editorconfig 410 Bytes
Copy Edit Raw Blame History
lengleng authored 2020-07-25 17:21 . tag v0.0.1
root = true
# 对所有文件生效
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# 对java, xml文件生效
[*.{java, xml}]
indent_style = tab
indent_size = 4
# 对yml, json文件生效
[*.{yml, json}]
indent_style = space
indent_size = 2
# 对后缀名为 .md 的文件生效
[*.md]
trim_trailing_whitespace = false
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化