
# 顶部的EditorConfig文件
root = true

# unix风格的换行符，每个文件都以换行符结尾
[*]
end_of_line = lf
insert_final_newline = true
# 设置默认字符集
charset = utf-8
# 去除行尾空白字符
trim_trailing_whitespace = true
# 使用空格缩进，设置2个空格缩进
indent_style = space
indent_size = 2

