咸鱼

咸鱼是以盐腌渍后,晒干的鱼

0%

EditorConfig使用介绍

在github看到很多项目根目录都有 .editorconfig 文件,所以去了解一下。

这个文件是 EditorConfig 用来统一不同编辑器的代码风格的配置。

各种IDE的风格自然不一样,通过这样一个配置文件定义的标准统一风格,比如缩进用x个空格。再有就是多人一起协同开发一个项目,editorconfig 能起到很好的效果。

示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# EditorConfig: http://editorconfig.org/

root = true

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

[*.md]
trim_trailing_whitespace = false