mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:10:04 +08:00
11 lines
324 B
Makefile
11 lines
324 B
Makefile
.PHONY: test lint docgen
|
|
|
|
test:
|
|
nvim --headless --noplugin -u scripts/minimal_init.vim -c "PlenaryBustedDirectory lua/tests/automated/ { minimal_init = './scripts/minimal_init.vim' }"
|
|
|
|
lint:
|
|
luacheck lua/telescope
|
|
|
|
docgen:
|
|
nvim --headless --noplugin -u scripts/minimal_init.vim -c "luafile ./scripts/gendocs.lua" -c 'qa'
|