vdirsyncer/pyproject.toml
2023-02-16 16:51:12 +01:00

30 lines
414 B
TOML

[tool.ruff]
select = [
"E",
"F",
"W",
"B0",
"I",
"UP",
"C4",
# "TID",
"RSE"
]
target-version = "py37"
[tool.ruff.isort]
force-single-line = true
[tool.pytest.ini_options]
addopts = """
--tb=short
--cov-config .coveragerc
--cov=vdirsyncer
--cov-report=term-missing:skip-covered
--no-cov-on-fail
--color=yes
"""
# filterwarnings=error
[tool.mypy]
ignore_missing_imports = true