mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-06 02:26:42 +00:00
11 lines
No EOL
111 B
Makefile
11 lines
No EOL
111 B
Makefile
.PHONY: lint
|
|
lint:
|
|
black -l 99 .
|
|
flake8 .
|
|
mypy .
|
|
vulture .
|
|
bandit .
|
|
|
|
.PHONY: test
|
|
test:
|
|
pytest -v app/
|