2015-08-10 17:50:02 +02:00
|
|
|
# http://editorconfig.org
|
|
|
|
root = true
|
|
|
|
|
2017-08-24 13:40:19 +02:00
|
|
|
[*]
|
|
|
|
indent_style = space
|
|
|
|
indent_size = 2
|
2016-03-08 14:31:31 +01:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
2017-12-21 08:39:31 +01:00
|
|
|
max_line_length = 120
|
2016-03-08 14:31:31 +01:00
|
|
|
|
2017-08-24 13:40:19 +02:00
|
|
|
[*.go]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 4
|
2015-08-10 17:50:02 +02:00
|
|
|
charset = utf-8
|
|
|
|
trim_trailing_whitespace = true
|
|
|
|
insert_final_newline = true
|
|
|
|
|
|
|
|
[*.md]
|
|
|
|
trim_trailing_whitespace = false
|
2019-03-27 17:53:49 +01:00
|
|
|
|
|
|
|
[Makefile]
|
|
|
|
indent_style = tab
|
|
|
|
indent_size = 2
|