1. 程式人生 > >【懶人筆記】我的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

注意 逗號 前後不要有空格。