From c178cfa02d892319a99f78ab753851a6c488bff8 Mon Sep 17 00:00:00 2001 From: Rodolfo Carvalho Date: Thu, 9 Feb 2017 17:08:25 +0100 Subject: Let pylint use as many CPUs as available --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index a32bd3d68..ab842843a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -18,7 +18,8 @@ persistent=no load-plugins= # Use multiple processes to speed up Pylint. -jobs=1 +# Zero means use the total number of CPUs. +jobs=0 # Allow loading of arbitrary C extensions. Extensions are imported into the # active Python interpreter and may run arbitrary code. -- cgit v1.2.1