mas/.editorconfig

32 lines
439 B
INI
Raw Normal View History

2018-10-18 00:00:24 +00:00
# http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
2018-10-18 00:00:24 +00:00
insert_final_newline = true
trim_trailing_whitespace = true
2018-10-18 00:00:24 +00:00
[*.json]
indent_size = 2
2020-05-28 04:27:01 +00:00
# Trailing spaces have meaning in Markdown
[*.md]
trim_trailing_whitespace = false
2020-05-28 04:27:01 +00:00
[*.plist]
indent_style = tab
[*.yml]
2024-03-31 13:51:00 +00:00
indent_size = 2
max_line_length = 80
2020-05-28 04:27:01 +00:00
[Makefile]
indent_style = tab
[script/*]
indent_size = 2
max_line_length = 80