From dad91cf413588fcfbd20efd871723efd07c07a11 Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Tue, 15 Oct 2024 17:17:05 +0200 Subject: [PATCH] Enforce more ruff rules Trying to be on par with zarr-python. --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6582c8e5..15bd8f4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -139,17 +139,25 @@ line-length = 100 [tool.ruff.lint] extend-select = [ "B", + "FLY", + "FURB", + "G", "I", + "PERF", "PGH", "PIE", "PT", + "PYI", "RSE", "RUF", "UP", + # "W", https://github.com/astral-sh/ruff/issues/13763 ] ignore = [ "B028", "B904", + "FURB101", + "FURB103", "PT001", "PT004", # deprecated "PT005", # deprecated