Skip to content

Commit 6460d07

Browse files
committed
tools: increase the maximum number of files to lint per worker
This increases the maximum number of files to lint per worker from 40 to 60 files. This should ideally reduce the total linting time a tiny bit. PR-URL: #27670 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Refael Ackermann (רפאל פלחי) <[email protected]> Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Ujjwal Sharma <[email protected]>
1 parent bf76823 commit 6460d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/lint-js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const rulesDirs = ['tools/eslint-rules'];
44
const extensions = ['.js', '.md'];
55
// This is the maximum number of files to be linted per worker at any given time
6-
const maxWorkload = 40;
6+
const maxWorkload = 60;
77

88
const cluster = require('cluster');
99
const path = require('path');

0 commit comments

Comments
 (0)