From 4a47a9ac444026fe77a8997febd0b223ce43b79e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 22 Jul 2026 22:04:44 +0000 Subject: [PATCH] Update Ruff lint config --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 13ee041..83bf232 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,6 +112,7 @@ warn_unused_configs = true # https://docs.astral.sh/ruff/settings/ [tool.ruff] +[tool.ruff.lint] select = [ "F", # pyflakes "E", # pycodestyle (errors) @@ -127,12 +128,12 @@ select = [ "Q", # flake8-quotes "PTH", # flake8-use-pathlib ] -ignore = ["E501", "N818", "D1", "D205", "PT004", "PT016"] +ignore = ["E501", "N818", "D1", "D205", "PT016"] -[tool.ruff.pydocstyle] +[tool.ruff.lint.pydocstyle] convention = "google" -[tool.ruff.isort] +[tool.ruff.lint.isort] known-first-party = ["gitmojis"] # Pytest