From 2635d74f910985fa9aee11f1bb3d841cc8e49694 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Sat, 1 Feb 2025 00:23:47 +0100 Subject: [PATCH] =?UTF-8?q?ruff/check=E2=86=94format?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- sh/lint/ruff.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0476e89..436119b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,5 +41,5 @@ style = "sphinx" line-length = 80 [tool.ruff.lint] -ignore = ["D203", "D213"] +ignore = ["D203", "D213", "COM812", "ISC001"] select = ["ALL"] diff --git a/sh/lint/ruff.sh b/sh/lint/ruff.sh index 8874cab..7750ed1 100644 --- a/sh/lint/ruff.sh +++ b/sh/lint/ruff.sh @@ -14,6 +14,7 @@ rwx_ruff_check() { ruff check \ --select "ALL" \ --ignore "D203,D213" \ + --ignore "COM812,ISC001" \ "${path}" }