flash / Makefile
NickNYU's picture
upload github well compiled files
a26db82
raw
history blame
157 Bytes
.PHONY: format lint
GIT_ROOT ?= $(shell git rev-parse --show-toplevel)
format:
black .
lint:
mypy .
black . --check
ruff check .
test:
pytest tests