From c4b7f3ab26a68e48ee2432d013d5f86a2413c25c Mon Sep 17 00:00:00 2001 From: Eiko Wagenknecht Date: Fri, 28 Jun 2024 09:19:30 +0200 Subject: [PATCH] chore: update ruff call Signed-off-by: Eiko Wagenknecht --- .github/workflows/quality-check.yml | 2 +- README_DEV.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality-check.yml b/.github/workflows/quality-check.yml index 96e5f9a..f8a8349 100644 --- a/.github/workflows/quality-check.yml +++ b/.github/workflows/quality-check.yml @@ -44,7 +44,7 @@ jobs: run: poetry install --with dev - name: Lint with ruff - run: poetry run ruff . + run: poetry run ruff ckeck . - name: Check format with ruff run: poetry run ruff format . --check diff --git a/README_DEV.md b/README_DEV.md index 8548c42..9e34c15 100644 --- a/README_DEV.md +++ b/README_DEV.md @@ -108,4 +108,4 @@ For profiling, run `scalene -m lootscraper`. - `chore`: Maintenance tasks, dependency updates and other non-user-facing changes - `ci`: Changes to the CI configuration files and scripts (GitHub Actions) - `revert`: Reverts a previous commit. In the body, it should say: `This reverts commit .` -- Run ruff (`poetry run ruff . --fix`) and ruff format (`poetry run ruff format .`) before committing. +- Run ruff (`poetry run ruff ckeck . --fix`) and ruff format (`poetry run ruff format .`) before committing.