1
0
mirror of https://github.com/quay/quay.git synced 2026-01-29 08:42:15 +03:00
Files
quay/pyproject.toml

26 lines
538 B
TOML

[tool.black]
line-length = 100
target-version = ['py39']
[tool.isort]
profile = "black"
[tool.pylint.messages_control]
disable = "missing-docstring,invalid-name,too-many-locals,too-few-public-methods,too-many-lines"
[tool.pylint.typecheck]
ignored-modules = "features,greenlet"
generated-members = "REQUEST,acl_users,aq_parent,DoesNotExist,id,can"
[tool.pylint.format]
max-line-length = 100
[tool.coverage.run]
branch = true
[tool.coverage.report]
omit = ['test/**', 'venv/**', '**/test/**']
[tool.pyright]
stubPath = 'mypy_stubs'