2022-06-09 01:44:53 +02:00
|
|
|
[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"
|
2022-06-09 01:44:53 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.pylint.format]
|
|
|
|
max-line-length = 120
|
|
|
|
good-names = ["i"]
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2022-06-17 00:43:55 +02:00
|
|
|
asyncio_mode = "auto"
|
|
|
|
env = [
|
|
|
|
"DB_NAME = didier-tests",
|
|
|
|
"DB_USERNAME = postgres",
|
|
|
|
"DB_HOST = postgres"
|
|
|
|
]
|