Skip to content

Commit

Permalink
Separate issues by lines as well
Browse files Browse the repository at this point in the history
Docker's buffers have issues when there is one really big line (see
moby/moby#20119). When we overwrote
`console.log`, we lost the `\n`. This could be causing issues.
  • Loading branch information
gdiggs committed Feb 9, 2016
1 parent 08891fa commit 838f269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ function analyzeFiles() {

result.messages.forEach(function(message) {
var issueJson = buildIssueJson(message, path);
process.stdout.write(issueJson + "\u0000");
process.stdout.write(issueJson + "\u0000\n");
});
});
});
Expand Down

0 comments on commit 838f269

Please sign in to comment.