xoxys.chrony/pyproject.toml

21 lines
383 B
TOML
Raw Normal View History

2024-02-15 16:02:51 +01:00
[tool.ruff]
exclude = [".git","__pycache__"]
line-length = 99
indent-width = 4
2024-02-18 12:15:09 +01:00
[tool.ruff.lint]
2024-02-15 16:02:51 +01:00
ignore = ["W191", "E111", "E114", "E117", "S101", "S105"]
select = ["F", "E", "I", "W", "S"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::FutureWarning",
"ignore::DeprecationWarning",
]