1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:10:06 +08:00
SpaceVim/bundle/nvim-web-devicons/Makefile
2023-05-30 21:40:52 +08:00

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