关于editorConfig

# http://editorconfig.org

root = true

# 对所有文件生效
[*]
# utf-8编码
charset = utf-8
# 空格形式缩进
indent_style = space
indent_size = 4
# 使用单引号
quote_type = single
# Linux换行符
end_of_line = CRLF
# 结尾插入新行
insert_final_newline = true
# 去除结尾空格
trim_trailing_whitespace = true
# 单行最大长度
max_line_length = 200

# 对后缀名为 md 的文件生效
[*.md]
trim_trailing_whitespace = false
原文地址:https://www.cnblogs.com/HePandeFeng/p/13803214.html