Skip to content
This repository was archived by the owner on Nov 8, 2017. It is now read-only.

Commit 98a49d5

Browse files
committed
Added editor config file to preserve the weird 2 spaces indentation everywhere when submitting a PULL REQUEST
1 parent 7f2fdd9 commit 98a49d5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.editorconfig

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
trim_trailing_whitespace = true
11+
charset = utf-8
12+
13+
# 2 space indentation
14+
indent_style = space
15+
indent_size = 2
16+
17+
[**.md]
18+
# trailing spaces have a meaning in markdown
19+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)