From 4b5933963e62cf77328b0fa24d1dfd2f846b1598 Mon Sep 17 00:00:00 2001 From: yosoyjhork Date: Wed, 21 Jan 2026 13:38:45 +0100 Subject: [PATCH] chore: add ruff configuration for code linting Added pyproject.toml with ruff settings to ensure consistent code style and improve code quality for all contributors. --- pyproject.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..9a865e3f --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[tool.ruff] +line-length = 88 +target-version = "py310" + +[tool.ruff.lint] +select = ["E", "F", "I"] +ignore = [] + +[tool.ruff.format] +quote-style = "double" +indent-style = "space"