CI: Whac-A-Mole: Prevent issues from plopping up again.

This commit explicitly enables `useless-super-delegation` and
`consider-using-sys-exit`, two `pylint` messages that do not occur
anymore and shall never occur again after #2317 was merged.
master
ep12 2021-03-23 10:34:27 +01:00 committed by Tycho Andersen
parent 786d0b3b24
commit 89855322e4
1 changed files with 4 additions and 1 deletions

View File

@ -143,6 +143,7 @@ disable=print-statement,
comprehension-escape,
not-callable, # TEMP: has false-positives currently. Re-enable later.
protected-access, # we need this a lot, so it will stay here!
c-extension-no-member, # this is probably staying here, too.
# all messages disabled above were suggested by
# `pylint --generate-rcfile`
# maybe some of them can be re-enabled later, but only after we have
@ -162,7 +163,6 @@ disable=print-statement,
broad-except,
bare-except,
assignment-from-no-return,
c-extension-no-member,
redefined-outer-name,
unused-argument,
unused-variable,
@ -183,6 +183,9 @@ disable=print-statement,
# multiple time (only on the command line, not in the configuration file where
# it should appear only once). See also the "--disable" option for examples.
# enable=c-extension-no-member
# Time to play Whac-A-Mole:
enable=consider-using-sys-exit,
useless-super-delegation,
[REPORTS]