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}" }