diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-02-09 17:08:25 +0100 |
---|---|---|
committer | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-02-10 15:19:57 +0100 |
commit | c178cfa02d892319a99f78ab753851a6c488bff8 (patch) | |
tree | af43ad633ab7c92141a88a7477d7a87c02e849c7 /.pylintrc | |
parent | f9cc3bbbeffba024079eac59a30a6c155396d62c (diff) | |
download | openshift-c178cfa02d892319a99f78ab753851a6c488bff8.tar.gz openshift-c178cfa02d892319a99f78ab753851a6c488bff8.tar.bz2 openshift-c178cfa02d892319a99f78ab753851a6c488bff8.tar.xz openshift-c178cfa02d892319a99f78ab753851a6c488bff8.zip |
Let pylint use as many CPUs as available
Diffstat (limited to '.pylintrc')
-rw-r--r-- | .pylintrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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. |