Files
nvim-cmp/Makefile
hrsh7th 22ec3ad442 Check buftype is prompt
Improve incomplete handling
2021-08-10 16:57:54 +09:00

25 lines
319 B
Makefile

.PHONY: fmt
fmt:
stylua --glob lua/**/*.lua -- lua
.PHONY: lint
lint:
luacheck ./lua
.PHONY: test
test:
vusted ./lua
.PHONY: pre-commit
pre-commit:
stylua --glob lua/**/*.lua -- lua
luacheck lua
vusted lua
.PHONY: integration
integration:
stylua --check --glob lua/**/*.lua -- lua
luacheck lua
vusted lua