Hi, by trial and error I found that I can put this into pylintrc: jobs=4 But I cannot find anything in the documentation where this is mentioned. Why is that so? Should I have searched harder? pylint --version pylint 2.2.2 astroid 2.1.0 Python 3.6.7 (default, Oct 22 2018, 11:32:17) [GCC 8.2.0] -- Wolfgang
It is described here: https://github.com/PyCQA/pylint/blob/51e12f81e410a3459b118e9551e77ff61470d4e... "Use multiple processes to speed up pylint" On Fri, Feb 8, 2019, 3:54 AM Wolfgang Rohdewald <wolfgang.kde@rohdewald.de wrote:
Hi,
by trial and error I found that I can put this into pylintrc:
jobs=4
But I cannot find anything in the documentation where this is mentioned. Why is that so? Should I have searched harder?
pylint --version pylint 2.2.2 astroid 2.1.0 Python 3.6.7 (default, Oct 22 2018, 11:32:17) [GCC 8.2.0]
-- Wolfgang
_______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
On Fr, 2019-02-08 at 06:03 -0800, Mariatta Wijaya wrote:
It is described here: https://github.com/PyCQA/pylint/blob/51e12f81e410a3459b118e9551e77ff61470d4e...
"Use multiple processes to speed up pylint"
OK, Thanks. This is good for new users but I am using pylint since quite a few years. It seems this option never made it into my personal pylintrc. But now I checked pylint -h again and I found pylint --full-documentation which actually mentions the pylintrc jobs option. Sorry for the noise -- Wolfgang
I see it in the online docs here: https://pylint.readthedocs.io/en/latest/user_guide/run.html#parallel-executi... and `pylint --help | less` will let you search (type '/') for '-j'. Best, Jonathan On Fri, Feb 8, 2019, at 05:54, Wolfgang Rohdewald wrote:
Hi,
by trial and error I found that I can put this into pylintrc:
jobs=4
But I cannot find anything in the documentation where this is mentioned. Why is that so? Should I have searched harder?
pylint --version pylint 2.2.2 astroid 2.1.0 Python 3.6.7 (default, Oct 22 2018, 11:32:17) [GCC 8.2.0]
-- Wolfgang
_______________________________________________ code-quality mailing list code-quality@python.org https://mail.python.org/mailman/listinfo/code-quality
-- Jonathan Hartley +1(507)513-1101 @tartley <http://tartley.com/>http://tartley.com
participants (3)
-
Jonathan Hartley
-
Mariatta Wijaya
-
Wolfgang Rohdewald