mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
35 lines
483 B
TOML
35 lines
483 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
|
|
|
|
[tool.coverage.report]
|
|
exclude_lines = [
|
|
"if TYPE_CHECKING:",
|
|
]
|