From 97f9134527393304e2bdb5fdfe90bebfc028cf40 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 18 Feb 2024 12:15:09 +0100 Subject: [PATCH] ci: fix deprecated ruff config --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d0f36cd..9e48ba4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ 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"]