1
0
mirror of https://github.com/quay/quay.git synced 2026-01-26 06:21:37 +03:00
Files
quay/pyproject.toml
Oleg Bulatov 5eaf0584db chore: Run mypy as CI job (#1363)
* Run mypy as CI job

* Fix peewee.pyi and configure pyright
2022-06-13 11:01:17 +02:00

23 lines
506 B
TOML

[tool.black]
line-length = 100
target-version = ['py38']
[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'