enable pylint-ignore

This commit is contained in:
Manuel Barkhau 2020-07-19 21:24:40 +00:00
parent 94744a333e
commit 316fb36282
5 changed files with 25 additions and 6 deletions

View file

@ -11,6 +11,11 @@ follow_imports = silent
strict_optional = True
ignore_missing_imports = True
show_error_codes = True
warn_unreachable = True
warn_return_any = True
warn_unused_ignores = True
warn_redundant_casts = True
[tool:isort]
known_third_party = pathlib2
@ -35,6 +40,8 @@ ignore =
E221
# Multiple spaces after operand
E222
# Missing whitespace after ','
E231
# Multiple spaces after ':'
E241
# Spaces around keyword/parameter equals
@ -142,6 +149,7 @@ disable =
logging-fstring-interpolation,
no-else-return,
no-else-raise,
too-few-public-methods,
missing-docstring,
missing-module-docstring,
missing-class-docstring,