All checks were successful
NeoVim tests / code-quality (push) Successful in 1m32s
15 lines
161 B
Makefile
15 lines
161 B
Makefile
all: lint fmt-check test
|
|
|
|
lint:
|
|
lua-language-server --check=lua/u/ --checklevel=Error
|
|
@# lx check
|
|
|
|
fmt-check:
|
|
stylua --check .
|
|
|
|
fmt:
|
|
stylua .
|
|
|
|
test:
|
|
busted
|