2019 / 12 / 14
by John Yuan

我的 EditorConfig 配置文件

我的 EditorConfig 配置文件。

以下是我常用的设置,支持的配置项请查看此文档或者官网

root = true

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

[*.md]
max_line_length = 0
trim_trailing_whitespace = false

[COMMIT_EDITMSG]
max_line_length = 0