8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d231fa0 + 0ee3117 commit 219b907Copy full SHA for 219b907
bin/eslint.js
@@ -194,7 +194,7 @@ var analysisFiles = runWithTiming("buildFileList", function() {
194
195
function analyzeFiles() {
196
var batchNum = 0
197
- , batchSize = 1
+ , batchSize = 10
198
, batchFiles
199
, batchReport;
200
@@ -214,7 +214,7 @@ function analyzeFiles() {
214
215
result.messages.forEach(function(message) {
216
var issueJson = buildIssueJson(message, path);
217
- stdout(issueJson + "\u0000");
+ process.stdout.write(issueJson + "\u0000");
218
});
219
220
0 commit comments