-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from stephfuchs/develop
Develop to master
- Loading branch information
Showing
21 changed files
with
393 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file is for unifying the coding style for different editors and IDEs | ||
# to use with PhpStorm install plugin „editorconfig“ | ||
# Further information can be found here: http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
; Unix-style newlines | ||
end_of_line = lf | ||
|
||
; File character encoding | ||
charset = utf-8 | ||
|
||
; will control whether whitespace characters preceding a newline will be removed by text editors automatically | ||
trim_trailing_whitespace = true | ||
|
||
; Denotes whether file should end with a newline | ||
insert_final_newline = true | ||
|
||
; matches multiple files for default indentation | ||
|
||
[**.xml] | ||
indent_style = tab | ||
indent_size = 1 | ||
|
||
|
||
[ant-config/**.{yaml, yml}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[**.{php, twig, html, txt, json, js, sass, scss, less, css, xlf, yml, yaml}] | ||
indent_style = space | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Start the script when ready | ||
* @type {Queer} | ||
*/ | ||
var queer = new Queer(new Translator(), new QueerInformation()); | ||
queer.init(); |
Oops, something went wrong.