diff --git a/scripts/pyproject.toml b/scripts/pyproject.toml new file mode 100644 index 0000000000..3987088ce7 --- /dev/null +++ b/scripts/pyproject.toml @@ -0,0 +1,8 @@ +[tool.ruff] +select = ["ALL"] +ignore = [ + "PLR2004", # magic-value-comparison +] + +[tool.ruff.pydocstyle] +convention = "pep257"