From dceb1133347cca44d538b9a333f4a1aa798b8c9d Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Fri, 29 Aug 2025 09:56:04 +0200 Subject: [PATCH] ruff: fix mix-up in configuration Ruff hasn't been finding errors in a while. Most of them are linting checks anyway, but there was quite a bit of deprecated usages. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cf2bc41..fbd0de0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,7 +57,7 @@ test = [ [project.scripts] vdirsyncer = "vdirsyncer.cli:app" -[tool.lint.ruff] +[tool.ruff.lint] extend-select = [ "E", "W",