mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 10:20:05 +08:00
16 lines
225 B
Makefile
16 lines
225 B
Makefile
|
all: colors style-check lint
|
||
|
|
||
|
colors:
|
||
|
nvim --headless -c 'source scripts/generate_colors.lua' -c 'qall'
|
||
|
|
||
|
style-check:
|
||
|
stylua . --check
|
||
|
|
||
|
style-fix:
|
||
|
stylua .
|
||
|
|
||
|
lint:
|
||
|
luacheck .
|
||
|
|
||
|
.PHONY: all colors style-check style-fix lint
|