Skip to content

Commit

Permalink
replace flake8 with ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
zacharyburnett committed Jun 12, 2024
1 parent 20116ab commit 664e22d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ filterwarnings = [
"ignore:skimage not installed",
]

[tool.flake8]
[tool.ruff.lint]
ignore = [
"E221",
"E226",
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ pip_pre =
[testenv:codestyle]
skip_install = true
changedir = {toxinidir}
description = check code style with flake8
deps = flake8
commands = flake8 acstools --count
description = check code style with ruff
deps = ruff
commands = ruff check .

[testenv:twine]
skip_install = true
Expand Down

0 comments on commit 664e22d

Please sign in to comment.