Encodechka / Makefile
Roman Solomatin
init
c7ac965 unverified
raw
history blame
135 Bytes
.PHONY: style format
.DEFAULT_GOAL := all
style:
ruff format
pre-commit run --all-files
quality:
ruff check
all: style quality