Allow pylint to utilize all available CPU cores (#676)
This is a nice addition to the linter's responsiveness. Co-authored-by: Abhinav Singh <mailsforabhinav@gmail.com>
This commit is contained in:
parent
4b8b6258e3
commit
d3be2a1d84
|
@ -36,7 +36,8 @@ ignore-patterns=
|
||||||
|
|
||||||
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
|
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
|
||||||
# number of processors available to use.
|
# number of processors available to use.
|
||||||
jobs=1
|
#jobs=1
|
||||||
|
jobs=0
|
||||||
|
|
||||||
# Control the amount of potential inferred values when inferring a single
|
# Control the amount of potential inferred values when inferring a single
|
||||||
# object. This can help the performance when dealing with large functions or
|
# object. This can help the performance when dealing with large functions or
|
||||||
|
|
Loading…
Reference in New Issue