Files
3d_audio/lib_audio_dsp/python/Makefile

17 lines
188 B
Makefile
Raw Normal View History

2025-12-11 09:43:42 +08:00
.PHONY: check update
check:
pyright audio_dsp --skipunannotated --level warning
ruff check
ruff format --check
update:
ruff check --fix
ruff format
dev:
make update
make check