Skip to content

Commit

Permalink
add .justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Aug 22, 2024
1 parent a33f67b commit 1c5d952
Show file tree
Hide file tree
Showing 4 changed files with 588 additions and 568 deletions.
20 changes: 20 additions & 0 deletions .justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
@isort:
pre-commit run isort --show-diff-on-failure --all-files

@black:
pre-commit run black --show-diff-on-failure --all-files

@ruff:
pre-commit run ruff --all-files

@flake8:
pre-commit run flake8 --hook-stage manual --all-files

@mypy:
pre-commit run mypy --hook-stage manual --all-files

@deptry:
pre-commit run deptry --hook-stage manual --all-files

lint: isort black ruff flake8 mypy deptry

Loading

0 comments on commit 1c5d952

Please sign in to comment.