Skip to content

Commit

Permalink
Closed #771 - Include a .editorconfing file to help enforce coding st…
Browse files Browse the repository at this point in the history
…andards
  • Loading branch information
wagnert committed Sep 15, 2016
1 parent b6358c9 commit a9b218a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This file is for unifying the coding style for different editors and IDEs
# editorconfig.org

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

# Spaces in coffee
[**.coffee]
indent_style = space
indent_size = 2

[**.js]
indent_style = space
indent_size = 2

# Tabs in less
[**.less]
indent_style = tab
indent_size = 2

[**.css]
indent_style = tab
indent_size = 2

[**.php]
indent_style = space
indent_size = 4

[**.html]
indent_style = tab
indent_size = 2
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

* Closed [#1018](https://github.com/appserver-io/appserver/issues/1018) - Pass environment variable to virtual-hosts.xml
* Closed [#840](https://github.com/appserver-io/appserver/issues/840) - URL Routes according to REST defacto standard
* Closed [#771](https://github.com/appserver-io/appserver/issues/771) - Include a .editorconfing file to help enforce coding standards
* Adding functionality to activate Doctrine production mode and allow cache configuration

# Version 1.1.2
Expand Down

0 comments on commit a9b218a

Please sign in to comment.