介绍
在写代码的时候,你有可能会遇到这样一个蛋疼的问题,同时需要写前端后端代码,但前后端语言缩进不一样,前端代码习惯于用两个空格符进行缩进,而后端代码需要四个空格,怎么破?
使用editorconfig即可轻松解决这一问题,且该插件已经得到了不少主流编辑器的支持,提交代码时只需要将其配置文件同时提交,安装有此插件的小伙伴便不需要各种调整格式了。
配置文件示例
# .editorconfig
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
# Tab indentation (no size specified)
[Makefile]
indent_style = tab
# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2
# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
可以看到,字符集被指定为了utf-8
,而*.py
文件缩进为空格,长度为4,lib/**.js
文件缩进为空格,长度为2。这样我们便可根据需求,按照特定语言进行代码缩进的控制了
更多配置可直接访问官网:https://editorconfig.org/
网友评论