vscode、atom、webstorm中使用editorConfig插件

一、vscode 更目录下新建.editorconfig文件

1
2
3
4
5
6
7
8
9
10
11
12
13

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

二、atom 安装editorconfig包 三、webstorm 在webStorm中默认支持editorConfig插件,自定义editorConfig需以下三步: 第一步:打开webStrome > File > settings(快捷键ctrl+alt+s); 第二步:找到Editor > Code Style 并点击它,在下面会有一个Enable EditorConfig support(启动EditorConfig的支持),点它前面的复选框选中它; 第三步:在复选框的后面有一Export按钮,它是导出editorConfig配置文件;我们点一下它,然后点确定;这时在你的项目中已经有了一个.editorConfig配置文件了; 使用快捷键 shift+ctrl+f 格式化文件 官网:https://editorconfig.org/


vscode、atom、webstorm中使用editorConfig插件
http://example.com/2018-07-31 vscode、atom、webstorm中使用editorconfig插件/
作者
csorz
发布于
2018年7月31日
许可协议