Skip to content

Commit

Permalink
feat(Build): Adds jsbeautifier task to trial using it instead of JSCS…
Browse files Browse the repository at this point in the history
… - config isnt as strict and task does it automatically instead of forcing user to fix errors
  • Loading branch information
furzeface committed Apr 14, 2015
1 parent 428de20 commit 6c00fc1
Show file tree
Hide file tree
Showing 3 changed files with 176 additions and 139 deletions.
22 changes: 22 additions & 0 deletions .jsbeautifyrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"js": {
"braceStyle": "collapse",
"breakChainedMethods": false,
"e4x": false,
"evalCode": false,
"indentChar": "\t",
"indentLevel": 0,
"indentSize": 1,
"indentWithTabs": false,
"jslintHappy": false,
"keepArrayIndentation": false,
"keepFunctionIndentation": true,
"maxPreserveNewlines": 10,
"preserveNewlines": true,
"spaceBeforeConditional": true,
"spaceInParen": false,
"unescapeStrings": false,
"wrapLineLength": 0,
"endWithNewline": true
}
}
Loading

0 comments on commit 6c00fc1

Please sign in to comment.