mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
23 lines
506 B
TOML
23 lines
506 B
TOML
[tool.black]
|
|
line-length = 100
|
|
target-version = ['py39']
|
|
|
|
[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'
|