Skip to content

Commit

Permalink
adding editorconfig file for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
ddavison committed Mar 18, 2015
1 parent 47e9ce8 commit a6dda8f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.java]
indent_style = space
indent_size = 4
continuation_indent_size = 2

[*.py]
indent_style = space
indent_size = 4

[*.html]
indent_style = space
indent_size = 2

0 comments on commit a6dda8f

Please sign in to comment.