mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 06:20:08 +01:00
project maintenance
This commit is contained in:
parent
78760f6324
commit
ae35ae3c1c
11 changed files with 213 additions and 84 deletions
14
setup.cfg
14
setup.cfg
|
|
@ -9,6 +9,7 @@ check_untyped_defs = True
|
|||
disallow_untyped_calls = True
|
||||
follow_imports = silent
|
||||
strict_optional = True
|
||||
error_summary = False
|
||||
ignore_missing_imports = True
|
||||
show_error_codes = True
|
||||
warn_unreachable = True
|
||||
|
|
@ -18,10 +19,9 @@ warn_redundant_casts = True
|
|||
|
||||
|
||||
[tool:isort]
|
||||
known_third_party = pathlib2
|
||||
known_third_party = click,pathlib2
|
||||
force_single_line = True
|
||||
length_sort = True
|
||||
line_length = 100
|
||||
|
||||
|
||||
[flake8]
|
||||
|
|
@ -117,9 +117,9 @@ README.md =
|
|||
|
||||
[tool:pylint]
|
||||
score = no
|
||||
reports = no
|
||||
|
||||
# pylint-ignore only works with jobs = 1
|
||||
jobs = 1
|
||||
jobs = 4
|
||||
|
||||
# Set the output format. Available formats are text, parseable, colorized,
|
||||
# msvs (visual studio) and html. You can also give a reporter class, eg
|
||||
|
|
@ -140,6 +140,12 @@ extension-pkg-whitelist = numpy,pandas,lxml,PIL,sklearn,pyblake2
|
|||
|
||||
notes=TODO,FIXME,XXX,SLOW,BUG
|
||||
|
||||
# similarities/duplicaition checker
|
||||
min-similarity-lines=4
|
||||
ignore-comments=yes
|
||||
ignore-docstrings=yes
|
||||
ignore-imports=yes
|
||||
|
||||
# https://pylint.pycqa.org/en/stable/technical_reference/features.html
|
||||
disable =
|
||||
bad-continuation,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue