# https://editorconfig.org
root = true
 
[*]
charset = utf-8 #字符集utf-8
indent_style = space #缩进风格：空格
indent_size = 2 #缩进大小2
end_of_line = lf #换行符lf
insert_final_newline = true #结尾总是插入新的一行
trim_trailing_whitespace = true #行尾允许空格
 
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false