blob: 328e15f595f3a2c3dab68447ac3ae79e67316bfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# EditorConfig is awesome: http://EditorConfig.org
# EditorConfig properties: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
# should be equivalent to
# vim:ts=2:sw=2:et
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
tab_width = 2
spaces_around_operators = true
spaces_around_brackets = true
[Makefile]
indent_style = tab
indent_size = 2
# https://github.com/wilmoore/go-userdir/blob/master/.editorconfig
# https://github.com/gogits/gogs/blob/master/.editorconfig
[*.go]
indent_style = tab
|