mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-11-01 18:48:14 +08:00
* Applied `make format` * Added format-check to makefile * Added a "Check codestyle" step to the build action. * Rerun `make format` * Added a "lint" target to makefile * Added lint step to the build action * Added W503 to the list of ignored flake8 errors. See https://www.flake8rules.com/rules/W503.html
37 lines
534 B
INI
37 lines
534 B
INI
[bumpversion]
|
|
current_version = 8.1.2
|
|
commit = True
|
|
tag = True
|
|
|
|
[bumpversion:file:fastapi_users/__init__.py]
|
|
search = __version__ = "{current_version}"
|
|
replace = __version__ = "{new_version}"
|
|
|
|
[flake8]
|
|
exclude = docs
|
|
max-line-length = 88
|
|
docstring-convention = numpy
|
|
ignore = D1, W503
|
|
|
|
[isort]
|
|
profile = black
|
|
|
|
[mypy]
|
|
|
|
[mypy-motor.*]
|
|
ignore_missing_imports = True
|
|
|
|
[mypy-passlib.*]
|
|
ignore_missing_imports = True
|
|
|
|
[tool:pytest]
|
|
addopts = --ignore=test_build.py
|
|
markers =
|
|
authentication
|
|
db
|
|
fastapi_users
|
|
manager
|
|
jwt
|
|
oauth
|
|
router
|