懒人笔记我的editorconfig配置
Posted mick_seu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了懒人笔记我的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配置的主要内容,如果未能解决你的问题,请参考以下文章