Skip to content

Commit

Permalink
Added editorconfig
Browse files Browse the repository at this point in the history
IDEs like PhpStorm 8 support it natively.

Borrowed from https://github.com/cakephp/cakephp/blob/master/.editorconfig
  • Loading branch information
ravage84 committed Oct 10, 2014
1 parent 768fd15 commit 22a73a7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .editorconfig
@@ -0,0 +1,21 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org

root = true

[*]
end_of_line = lf

[*.php]
indent_style = space
indent_size = 4
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.bat]
end_of_line = crlf

[*.yml]
indent_style = space
indent_size = 2

0 comments on commit 22a73a7

Please sign in to comment.