【懒人笔记】我的editorconfig配置

Editorconfig 是一套用于统一代码格式的解决方案,适用于多平台,多软件。

官网传送门:Editorconfig

editorconfig 的配置非常容易,只需在你的工作根目录下新建一个 .editorconfig 文件:

root = true

[*]
charset = utf-8
end_of_line = lf

[**.{h,cc,cxx,cpp,proto,lua}]
indent_style = space
indent_size = 2
table_width = 2

[{**.py,wscript,wscript_*}]
indent_style = space
indent_size = 4
table_width = 4

注意 逗号 前后不要有空格。

你可能感兴趣的:(杂货铺,editorconfig)