Skip to content

Commit ecf8799

Browse files
committed
tools: add .editorconfig (SuperTux#424)
Allows consistent configuration of indentation and encoding rules across different editors (http://editorconfig.org/). [ci skip]
1 parent fa4ff5c commit ecf8799

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = true
9+
max_line_length = 80
10+
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)