Skip to content

Commit

Permalink
Use ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Aug 4, 2024
1 parent 042d091 commit 5ccf8f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ test_deps:
python -m pip install .[test]

lint:
for dir in $$(dirname */__init__.py); do ruff $$dir; done
for script in scripts/*[^cmd]; do if grep -q python $$script; then ruff $$script; fi; done
for dir in $$(dirname */__init__.py); do ruff check $$dir; done
for script in scripts/*[^cmd]; do if grep -q python $$script; then ruff check $$script; fi; done
mypy --install-types --non-interactive argcomplete

test:
Expand Down

0 comments on commit 5ccf8f5

Please sign in to comment.