Skip to content

Commit

Permalink
Add editorconfig to standardize code style a bit across IDEs
Browse files Browse the repository at this point in the history
  • Loading branch information
codyaray committed Jun 7, 2018
1 parent 421a359 commit 715ea37
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[*]
charset=utf-8
end_of_line=lf
insert_final_newline=true
indent_style=space
indent_size=4

[*.go]
indent_style=tab
tab_width=4

[{Makefile,*.mk}]
indent_style=tab
tab_width=4

[*.json]
indent_style=space
indent_size=2

[{*.yaml,*.yml}]
indent_style=space
indent_size=2

0 comments on commit 715ea37

Please sign in to comment.