plugin.video.viervijfzes/.pylintrc

26 lines
658 B
INI
Raw Normal View History

2020-03-19 16:45:31 +01:00
[MESSAGES CONTROL]
disable=
bad-option-value,
2021-07-12 20:09:54 +02:00
cyclic-import, # This should be fixed
2020-03-19 16:45:31 +01:00
duplicate-code,
fixme,
import-outside-toplevel,
line-too-long,
2021-07-12 20:09:54 +02:00
no-init,
2020-03-19 16:45:31 +01:00
old-style-class,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
2021-07-12 20:09:54 +02:00
too-many-statements,
use-maxsplit-arg,
consider-using-from-import,
2021-09-15 16:18:53 +02:00
unspecified-encoding,
2023-07-21 22:28:50 +02:00
broad-exception-raised,
2021-07-12 20:09:54 +02:00
super-with-arguments, # Python 2.7 compatibility
2021-09-15 16:18:53 +02:00
raise-missing-from, # Python 2.7 compatibility
consider-using-f-string, # Python 2.7 compatibility