mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 01:10:05 +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'
|