aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5b3f0b17a52cdd0ff9df80559a6a5539d843d962 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
test:
	sh ./scripts/run_test.sh
lint:
	@echo "\nRunning luacheck\n"
	luacheck lua/* test/*
	@echo "\nRunning stylua\n"
	stylua --check .

.PHONY: test lint