From b91480edeab55afe2895424d2c2f5b60e14bcad8 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 18 Feb 2024 12:13:56 +0100 Subject: [PATCH] ci: fix deprecated ruff config --- pyproject.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d0f36cd..7193140 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,9 +1,10 @@ [tool.ruff] -exclude = [".git","__pycache__"] +exclude = [".git", "__pycache__"] line-length = 99 indent-width = 4 +[tool.ruff.lint] ignore = ["W191", "E111", "E114", "E117", "S101", "S105"] select = ["F", "E", "I", "W", "S"] @@ -13,7 +14,4 @@ indent-style = "space" line-ending = "lf" [tool.pytest.ini_options] -filterwarnings = [ - "ignore::FutureWarning", - "ignore::DeprecationWarning", -] +filterwarnings = ["ignore::FutureWarning", "ignore::DeprecationWarning"]