mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
pylint fails to read Qt modules when invoked as a subprocess with -j 0, and it looks like I committed this in the middle of debugging the issue. Work around it by invoking pylint directly. It's still awfully slow, taking 30 seconds on a 10 core machine.
26 lines
467 B
INI
26 lines
467 B
INI
[MASTER]
|
|
persistent = no
|
|
extension-pkg-whitelist=PyQt5
|
|
ignore = forms
|
|
|
|
[TYPECHECK]
|
|
ignored-modules=win32file,pywintypes,socket,win32pipe
|
|
|
|
[REPORTS]
|
|
output-format=colorized
|
|
|
|
[MESSAGES CONTROL]
|
|
disable=C,R,
|
|
fixme,
|
|
unused-wildcard-import,
|
|
attribute-defined-outside-init,
|
|
redefined-builtin,
|
|
wildcard-import,
|
|
broad-except,
|
|
bare-except,
|
|
unused-argument,
|
|
unused-variable,
|
|
redefined-outer-name,
|
|
global-statement,
|
|
protected-access,
|
|
arguments-differ,
|