ruff/scripts/pyproject.toml

20 lines
339 B
TOML

[project]
name = "scripts"
version = "0.0.1"
dependencies = ["sphinx"]
[tool.ruff]
select = ["ALL"]
ignore = [
"E501", # line-too-long
"INP001", # implicit-namespace-package
"PL", # pylint
"S101", # assert-used
"EM", # errmgs
]
unfixable = [
"RUF100", # unused-noqa
]
[tool.ruff.pydocstyle]
convention = "pep257"