Add scripts/pyproject.toml to use ruff for ruff :)

This commit is contained in:
Martin Fischer 2023-01-20 08:13:42 +01:00 committed by Charlie Marsh
parent ff6defc988
commit f012877be1

8
scripts/pyproject.toml Normal file
View file

@ -0,0 +1,8 @@
[tool.ruff]
select = ["ALL"]
ignore = [
"PLR2004", # magic-value-comparison
]
[tool.ruff.pydocstyle]
convention = "pep257"