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 <targos@protonmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
1 parent bf76823 commit 6460d07

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)