From 2daad0089464af28db02bb6c92e1fec7fccec126 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 11:32:45 +0000 Subject: [PATCH] Add pyproject.toml with ruff configuration to limit linting scope --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ef5ebcd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,9 @@ +[tool.ruff] +include = ["snip/**/*.py", "tests/**/*.py"] + +[tool.ruff.lint] +select = ["F", "E", "W"] +ignore = [] + +[tool.ruff.lint.per-file-ignores] +"tests/*" = ["F401"] \ No newline at end of file