From da6e16157fbfb6ff54e2b16ff1b0234c13828b03 Mon Sep 17 00:00:00 2001 From: John Kleinschmidt Date: Wed, 27 Jul 2022 16:26:54 -0400 Subject: [PATCH] ci: explicitly use pylint-1.5 for pylint (#35105) 3780302: pylint: drop unversioned program https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3780302 --- script/lint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lint.js b/script/lint.js index 5e7489ee8ddd6..6fd7b6d4888ea 100755 --- a/script/lint.js +++ b/script/lint.js @@ -103,7 +103,7 @@ const LINTERS = [{ const rcfile = path.join(DEPOT_TOOLS, 'pylintrc'); const args = ['--rcfile=' + rcfile, ...filenames]; const env = Object.assign({ PYTHONPATH: path.join(ELECTRON_ROOT, 'script') }, process.env); - spawnAndCheckExitCode('pylint', args, { env }); + spawnAndCheckExitCode('pylint-1.5', args, { env }); } }, { key: 'javascript',