Skip to content

Commit 838f269

Browse files
committed
Separate issues by lines as well
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.
1 parent 08891fa commit 838f269

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: bin/eslint.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ function analyzeFiles() {
218218

219219
result.messages.forEach(function(message) {
220220
var issueJson = buildIssueJson(message, path);
221-
process.stdout.write(issueJson + "\u0000");
221+
process.stdout.write(issueJson + "\u0000\n");
222222
});
223223
});
224224
});

0 commit comments

Comments
 (0)