一个好用的 .editorconfig 文件示例
分享一个自用的 .editorconfig 配置
发布于 星期三,五月 22 2024
.editorconfig
文件可以统一规范项目内的文件空格、缩进大小等,十分好用。Visual Studio Code 和 JetBrains 系列编辑器都完美支持
我创建的每个项目里面都必有 .editorconfig
文件,保存下来方便后面复用
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# For normal files
[*]
indent_style = space
max_line_length = 100
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false
# For go project, makefile, go files
[{Makefile,*.go}]
indent_style = tab
indent_size = 4
- 项目工程化