cli[patch]: ruff 0.5 (#23833)

This commit is contained in:
Bagatur
2024-07-03 14:33:15 -04:00
committed by GitHub
parent 55f6f91f17
commit a4798802ef
19 changed files with 42 additions and 29 deletions

View File

@@ -29,7 +29,7 @@ pytest = "^7.4.2"
pytest-watch = "^4.2.0"
[tool.poetry.group.lint.dependencies]
ruff = "^0.1.5"
ruff = "^0.5"
[tool.poetry.group.test.dependencies]
@@ -62,9 +62,9 @@ _bump_2.uses = { version = "version" }
_bump_1 = "poetry version patch"
_check_formatting = "poetry run ruff format . --diff"
_lint = "poetry run ruff ."
_lint = "poetry run ruff check ."
_format = "poetry run ruff format ."
_lint_fix = "poetry run ruff . --fix"
_lint_fix = "poetry run ruff check . --fix"
[build-system]
requires = ["poetry-core"]