Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 9fc3629

Browse files
committed
#13 Add an editor config
In coordination with the team added an editor config to stream line and automate th indentation styles. Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent d7a047b commit 9fc3629

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig is awesome: https://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+
charset = utf-8
11+
indent_style = space
12+
indent_size = 2
13+
14+
[*.go]
15+
indent_style = tab
16+
17+
[Makefile]
18+
indent_style = tab

0 commit comments

Comments
 (0)