Enhance Makefile and add editorconfig (#115)

This commit is contained in:
Khosrow Moossavi
2019-09-23 14:27:11 -04:00
committed by Martin Etmajer
parent ffeb72c34b
commit f0a7d374a5
11 changed files with 361 additions and 54 deletions

26
.editorconfig Normal file
View File

@@ -0,0 +1,26 @@
# http://editorconfig.org
# this file is the top-most editorconfig file
root = true
# all files
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
[*.go]
indent_style = tab
indent_size = 4
[json*.golden]
insert_final_newline = false
[*.{yaml,yml}]
indent_size = 2
[Makefile]
indent_style = tab