1
0
Fork 0

pylint: Disable all failing python3 pylint errors

Signed-off-by: Fabian P. Schmidt <kerel@mailbox.org>
merge-requests/863/head
Fabian P. Schmidt 2019-12-31 22:24:59 +01:00
parent 538ea52c1a
commit 7412376ec5
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,7 @@ disable=
C0412, # ungrouped-imports
E1101, # no-member
E1121, # too-many-function-args
E0237, # assigning-non-slot
R0201, # no-self-use
R0401, # cyclic-import
R0801, # needs to remain disabled see https://github.com/PyCQA/pylint/issues/214
@ -19,9 +20,12 @@ disable=
R0913, # too-many-arguments
R0914, # too-many-locals
R0915, # too-many-statements
W0107, # unnecessary-pass
W0201, # attribute-defined-outside-init
W0613, # unused-argument
W0621, # redefined-outer-name
W0622, # redefined-builtin
W0703, # broad-except
W1308, # duplicate-string-formatting-argument
W1505, # deprecated-method
W5101, # model-missing-unicode