25 lines
364 B
INI
25 lines
364 B
INI
# EditorConfig is awesome: https://EditorConfig.org
|
|
|
|
# 根目录配置文件
|
|
root = true
|
|
|
|
|
|
# 默认规则
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
|
|
|
|
# Shell scripts
|
|
[*.sh]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
|
|
# Markdown documents
|
|
[*.md]
|
|
indent_style = space
|
|
indent_size = 2
|
|
trim_trailing_whitespace = false |