mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2026-02-02 23:55:10 +01:00
enable pylint-ignore
This commit is contained in:
parent
94744a333e
commit
316fb36282
5 changed files with 25 additions and 6 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue