pig/.editorconfig
冷冷 f0c530ee87 🔖 Releasing / Version tags. 2.7.0
🔖 Releasing / Version tags. 2.7.0
2020-03-14 16:33:53 +08:00

25 lines
410 B
INI
Executable File

root = true
# 对所有文件生效
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
# 对java, xml文件生效
[*.{java, xml}]
indent_style = tab
indent_size = 4
# 对yml, json文件生效
[*.{yml, json}]
indent_style = space
indent_size = 2
# 对后缀名为 .md 的文件生效
[*.md]
trim_trailing_whitespace = false