Skip to content

Commit

Permalink
chore: use ruff check <path> instead of the deprecated `ruff <path>…
Browse files Browse the repository at this point in the history
…` syntax
  • Loading branch information
jedel1043 committed Jul 3, 2024
1 parent d50c71a commit 536f51e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ deps =
ruff
commands =
black --target-version py310 {[vars]all_path}
ruff --fix {[vars]all_path}
ruff check --fix {[vars]all_path}

[testenv:lint]
description = Check code against coding style standards.
Expand All @@ -47,7 +47,7 @@ deps =
yamllint
commands =
codespell {[vars]all_path}
ruff {[vars]all_path}
ruff check {[vars]all_path}
black --check --diff --target-version py310 {[vars]all_path}
yamllint --strict {[vars]snap_path}

Expand Down

0 comments on commit 536f51e

Please sign in to comment.