Files
xiaomubiao-master/.editorconfig
2026-05-22 16:13:20 +08:00

22 lines
520 B
INI
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

root = true #表示是最顶层的配置文件发现设为true时才会停止查找.editorconfig文件
# 匹配全部文件
[*]
# 缩进风格,可选"space"、"tab"
indent_style = space
# 缩进的空格数
indent_size = 2
# 结尾换行符
end_of_line = lf
# 设置字符集
charset = utf-8
# 删除一行中的前后空格
trim_trailing_whitespace = true
# 在文件结尾插入新行
insert_final_newline = true
max_line_length = 150
[*.md]
# 删除一行中的前后空格
trim_trailing_whitespace = false