# SPDX-FileCopyrightText: © 2026 scy
#
# SPDX-License-Identifier: MIT

.PHONY: all fmt noqa qa test reuse


all: fmt qa reuse test


fmt:
	ruff format
	ruff check --fix


noqa:
	ruff check --add-noqa


qa:
	mypy


reuse:
	reuse lint --lines


test:
	pytest
