Skip to content

Commit

Permalink
add .justfile (#2325)
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Aug 22, 2024
1 parent dcc74eb commit 6c883f3
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
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

3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

- add landing page https://mandiant.github.io/capa/ @williballenthin #2310
- add rules website https://mandiant.github.io/capa/rules @DeeyaSingh #2310

- add .justfile @williballenthin #2325

### Breaking Changes

### New Rules (0)
Expand Down

0 comments on commit 6c883f3

Please sign in to comment.