Add pylint compatability for black

Marking exemptions and pulling back to new line length
(It's gonna hate comments, will fix in a sec)
This commit is contained in:
Zedifus 2022-03-23 02:51:37 +00:00
parent e06fe8a52a
commit 9b2161d450

View File

@ -78,7 +78,9 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have # --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes # no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W". # --disable=W".
disable=abstract-method, disable=C0330,
C0326,
abstract-method,
attribute-defined-outside-init, attribute-defined-outside-init,
bad-inline-option, bad-inline-option,
bare-except, bare-except,
@ -306,7 +308,7 @@ indent-after-paren=4
indent-string=' ' indent-string=' '
# Maximum number of characters on a single line. # Maximum number of characters on a single line.
max-line-length=150 max-line-length=88
# Maximum number of lines in a module. # Maximum number of lines in a module.
max-module-lines=2000 max-module-lines=2000