mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:20:05 +08:00
18 lines
202 B
Makefile
18 lines
202 B
Makefile
|
.PHONY: lint
|
||
|
lint:
|
||
|
luacheck ./lua
|
||
|
|
||
|
.PHONY: test
|
||
|
test:
|
||
|
vusted --output=gtest ./lua
|
||
|
|
||
|
.PHONY: pre-commit
|
||
|
pre-commit:
|
||
|
luacheck lua
|
||
|
vusted lua
|
||
|
|
||
|
.PHONY: integration
|
||
|
integration:
|
||
|
luacheck lua
|
||
|
vusted lua
|