From 8803d5a0865360bc9e69d8bf7c98bc87d7ed8883 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Thu, 28 Aug 2025 11:40:46 +0200 Subject: [PATCH] ruff: use extend-select Ensure that we don't disable any default rules. --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 32f2641..cf2bc41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,9 +58,8 @@ test = [ vdirsyncer = "vdirsyncer.cli:app" [tool.lint.ruff] -select = [ +extend-select = [ "E", - "F", "W", "B0", "I",