didier/pyproject.toml

21 lines
325 B
TOML
Raw Normal View History

[tool.black]
line-length = 120
[tool.mypy]
plugins = [
"sqlalchemy.ext.mypy.plugin"
]
[tool.pylint.master]
disable = [
"missing-module-docstring",
2022-06-16 00:34:27 +02:00
"too-few-public-methods",
"too-many-arguments"
]
[tool.pylint.format]
max-line-length = 120
good-names = ["i"]
[tool.pytest.ini_options]
asyncio_mode = "auto"