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 1cc301d
Show file tree
Hide file tree
Showing 5 changed files with 590 additions and 569 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

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
Loading

0 comments on commit 1cc301d

Please sign in to comment.