mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-05-10 17:42:55 +08:00
11 lines
170 B
Makefile
11 lines
170 B
Makefile
.PHONY: install lint
|
|
|
|
install:
|
|
@echo "Installing dependencies..."
|
|
@poetry install --no-root
|
|
|
|
fmt:
|
|
@echo "Formatting..."
|
|
@poetry run black .
|
|
@poetry run ruff --fix .
|