.editorconfig
# 表明是最顶层的配置文件,发现设为true时,才会停止查找.editorconfig文件
root = true
[*]
# 换行符的类型。lf, cr, crlf三种
end_of_line = lf
# indent_style 缩进使用tab或者space
indent_style = tab
# 缩进为tab时,缩进的宽度
tab_width = 4
# 是否使文件以一个空白行结尾
insert_final_newline = true
# 文件的charset。有以下几种类型:latin1, utf-8, utf-8-bom, utf-16be, utf-16le
charset = utf-8
# 是否将行尾空格自动删除
trim_trailing_whitespace = true
# md行尾空格自动删除false
[*.md]
trim_trailing_whitespace = false
[*.json]
indent_style = tab
tab_width = 4