Skip to content

Commit

Permalink
Added .editorconfig for consistency across IDEs
Browse files Browse the repository at this point in the history
  • Loading branch information
dandehavilland committed Jan 16, 2015
1 parent 98aa2f5 commit 10eeda8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .editorconfig
@@ -0,0 +1,32 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true

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

[*.js]
indent_style = space
indent_size = 4

[*.hbs]
indent_style = space
indent_size = 4

[*.css]
indent_style = space
indent_size = 4

[*.html]
indent_style = space
indent_size = 4

[*.{diff,md}]
trim_trailing_whitespace = false

0 comments on commit 10eeda8

Please sign in to comment.