From 7f2240f1b9231e8b856706952ec84234177a495b Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sun, 5 Jun 2022 12:53:55 -0700 Subject: [PATCH] chore: use multiple processors when running PyLint Use multiple processors when running PyLint. On my system it took about 10.3 seconds to run PyLint before this change. After this change it takes about 5.8 seconds to run PyLint. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index fc6c1eca9..891219935 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,7 @@ commit_message = "" [tool.pylint.messages_control] max-line-length = 88 +jobs = 0 # Use auto-detected number of multiple processes to speed up Pylint. # TODO(jlvilla): Work on removing these disables over time. disable = [ "arguments-differ",