Skip to content

Commit

Permalink
support consistent coding style across users
Browse files Browse the repository at this point in the history
If the user adds an editorconfig plugin to their editor or IDE,
editorconfig auto-applies the correct coding style.
  • Loading branch information
jumanjiman committed Jan 23, 2014
1 parent 3dc170b commit 3144ab0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
; This file is for unifying the coding style for different editors and IDEs.
; Plugins are available for notepad++, emacs, vim, gedit,
; textmate, visual studio, and more.
;
; See http://editorconfig.org for details.

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

0 comments on commit 3144ab0

Please sign in to comment.