From 5b5171899096ce04f6249de82145f35ca8af8f9a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 13 May 2025 05:50:57 +0200 Subject: [PATCH] Resolve ruff deprecation warning The config has been split into formatter and linter, and the global options are deprecated. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a1d5cf00d..d17a60e72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ -[tool.ruff] +[tool.ruff.lint] ignore = ["E501","E711","E712"] -extend-select = ["I"] \ No newline at end of file +extend-select = ["I"]