mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:00:04 +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
|