From f012877be111fee7c98d4862a0bbd17c14dcb8fc Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Fri, 20 Jan 2023 08:13:42 +0100 Subject: [PATCH] Add scripts/pyproject.toml to use ruff for ruff :) --- scripts/pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/pyproject.toml 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"