Browse Source

Add .editorconfig

Brendan Abolivier 6 years ago
parent
commit
c3764d3db1
Signed by: Brendan Abolivier <contact@brendanabolivier.com> GPG key ID: 8EF1500759F70623
1 changed files with 18 additions and 0 deletions
  1. 18
    0
      .editorconfig

+ 18
- 0
.editorconfig View File

@@ -0,0 +1,18 @@
1
+root = true
2
+
3
+[*]
4
+charset = utf-8
5
+
6
+end_of_line = lf
7
+insert_final_newline = true
8
+trim_trailing_whitespace = true
9
+
10
+[*.go]
11
+indent_style = tab
12
+indent_size = 4
13
+
14
+[*.md]
15
+trim_trailing_whitespace = false
16
+
17
+[*.{yml,yaml}]
18
+indent_style = space