chore: use ruff check instead of ruff

`ruff` without `check` is deprecated.
This commit is contained in:
link2xt
2024-04-07 19:57:05 +00:00
parent 4304e3f0be
commit 5bcc44ca9b
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ deps =
black
commands =
black --quiet --check --diff src/ examples/ tests/
ruff src/ examples/ tests/
ruff check src/ examples/ tests/
[pytest]
timeout = 300

View File

@@ -47,7 +47,7 @@ deps =
restructuredtext_lint
commands =
black --quiet --check --diff setup.py src/deltachat examples/ tests/
ruff src/deltachat tests/ examples/
ruff check src/deltachat tests/ examples/
rst-lint --encoding 'utf-8' README.rst
[testenv:mypy]