nvim-lspconfig/Makefile
Justin M. Keyes 2d113e6c02 ci: emmylua
- Introduce emmylua CI job to type-check code.
- Drop old analyzers that haven't reported anything useful in a long
  time and are redundant with luals/emmylua.
2025-11-14 00:14:19 -05:00

11 lines
143 B
Makefile

test:
vusted ./test
lint:
@printf "\nRunning stylua\n"
stylua --check .
@printf "\nRunning emmylua\n"
emmylua_check .
.PHONY: test lint