From f3f0ff6a362f760bc784ff57b625a602511cd018 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20Gr=C3=B6nholm?= Date: Sat, 13 Jul 2024 01:16:35 +0300 Subject: [PATCH] Updated Ruff configuration --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 36ea8af..8416650 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,13 +46,13 @@ local_scheme = "dirty-tag" write_to = "src/exceptiongroup/_version.py" [tool.ruff.lint] -select = [ - "E", "F", "W", # default flake-8 +extend-select = [ "I", # isort "ISC", # flake8-implicit-str-concat "PGH", # pygrep-hooks "RUF100", # unused noqa (yesqa) "UP", # pyupgrade + "W", # pycodestyle warnings ] [tool.ruff.lint.pyupgrade]