ruff/scripts/pyproject.toml
2023-02-24 18:55:33 +00:00

18 lines
247 B
TOML

[project]
name = "scripts"
version = "0.0.1"
dependencies = ["sphinx"]
[tool.black]
line-length = 88
[tool.ruff]
line-length = 88
select = ["ALL"]
ignore = [
"PL", # pylint
"S", # bandit
]
[tool.ruff.pydocstyle]
convention = "pep257"