Skip to content

Commit f762373

Browse files
authored
Add EditorConfig (#1849)
Problem: Every editor has different defaults. Solution: Use EditorConfig to define coding styles
1 parent 1548d81 commit f762373

File tree

3 files changed

+622
-605
lines changed

3 files changed

+622
-605
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+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_size = 4
9+
indent_style = tab
10+
11+
[*.{md,yml,yaml}]
12+
indent_size = 2
13+
indent_style = space

0 commit comments

Comments
 (0)