mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
21 lines
425 B
Makefile
21 lines
425 B
Makefile
@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
|
|
|