Skip to content

Commit

Permalink
lint_python.yml: ruff check --output-format=full
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Jul 12, 2024
1 parent 3a38f34 commit 3406100
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
with: {python-version: 3.x}
- run: pip install --upgrade pip ruff setuptools wheel
- name: "Ruff: Show stopper (must-fix) issues"
run: ruff . --select=E9,F63,F7,F82,PLE,YTT --show-source .
run: ruff check --select=E9,F63,F7,F82,PLE,YTT --output-format=full .
- name: "Ruff: All issues"
run: ruff --exit-zero --select=ALL --statistics --target-version=py37 .
run: ruff check --exit-zero --select=ALL --statistics --target-version=py37 .
- name: "Ruff: All fixable (ruff --fix) issues"
run: ruff --exit-zero --select=ALL --ignore=ANN204,COM812,ERA001,RSE102,RUF001
run: ruff check --exit-zero --select=ALL --ignore=ANN204,COM812,ERA001,RSE102,RUF001
--statistics --target-version=py37 . | grep "\[\*\]"
- run: pip install black codespell mypy pytest safety
- run: black --check . || true
Expand Down

0 comments on commit 3406100

Please sign in to comment.