Skip to content

Commit

Permalink
fix hygiene
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Mar 6, 2018
1 parent 8ba5fae commit 4e445e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build/gulpfile.hygiene.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,11 @@ function hygiene(some) {
tslint: undefined
}).then(result => {
if (result.error) {
console.error(result.message);
fs.writeFileSync('C:\\Users\\joao\\Desktop\\src.txt', result.src);
fs.writeFileSync('C:\\Users\\joao\\Desktop\\dest.txt', result.dest);


console.error(result.src, result.message);
errorCount++;
}
cb(null, file);
Expand Down
3 changes: 1 addition & 2 deletions tsfmt.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"tabSize": 4,
"indentSize": 4,
"newLineCharacter": "\n",
"convertTabsToSpaces": false,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
Expand All @@ -14,4 +13,4 @@
"insertSpaceBeforeFunctionParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
}
}

0 comments on commit 4e445e5

Please sign in to comment.