neogit/Makefile

15 lines
344 B
Makefile
Raw Permalink Normal View History

test:
2024-06-25 10:26:29 +02:00
TEMP_DIR=$$TEMP_DIR TEST_FILES=$$TEST_FILES GIT_CONFIG_GLOBAL=/dev/null GIT_CONFIG_SYSTEM=/dev/null NVIM_APPNAME=neogit-test nvim --headless -S "./tests/init.lua"
2021-05-13 17:29:32 +02:00
lint:
selene --config selene/config.toml lua
2023-12-28 19:38:34 +01:00
typos
lint-short:
selene --config selene/config.toml --display-style Quiet lua
2021-05-13 17:29:32 +02:00
2024-06-02 20:13:40 +02:00
format:
stylua .
.PHONY: format lint test