xoxys.update/pyproject.toml

18 lines
377 B
TOML
Raw Normal View History

2024-02-18 12:09:42 +01:00
[tool.ruff]
2024-02-18 12:13:56 +01:00
exclude = [".git", "__pycache__"]
2024-02-18 12:09:42 +01:00
line-length = 99
indent-width = 4
2024-02-18 12:13:56 +01:00
[tool.ruff.lint]
2024-02-18 12:09:42 +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]
2024-02-18 12:13:56 +01:00
filterwarnings = ["ignore::FutureWarning", "ignore::DeprecationWarning"]