From f569ec7f4b8255bcb0e851ff4d250184ad32def2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 23 Oct 2024 13:39:52 +0200 Subject: [PATCH] uff check --output-format=github --select=ALL --ignore=D203,D212,Q000 --- .github/workflows/lint_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index b12f2790..0ca9e8da 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -12,7 +12,7 @@ jobs: - run: pipx run codespell --ignore-words-list="commend" - run: pip install mypy pytest ruff - run: ruff format --check --config "format.quote-style = 'single'" - - run: ruff check --output-format=github --select=ALL --ignore=Q000 + - run: ruff check --output-format=github --select=ALL --ignore=D203,D212,Q000 - run: pip install -r requirements.txt || pip install --editable . || true - run: mkdir --parents --verbose .mypy_cache - run: mypy --ignore-missing-imports --install-types --non-interactive .