summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-01 13:33:17 -0700
committerThePrimeAgain <theprimeagain@theprimeagain.com>2026-01-01 13:33:17 -0700
commit5b4bb5fc2eb5004f45f5c54878961ca74f1b5639 (patch)
treefff2881de54cb054c95b8a44727bb7763ff0d8b1
parent8d431911e7c5bfc1943f34345567efb5c36e9a12 (diff)
downloada4-5b4bb5fc2eb5004f45f5c54878961ca74f1b5639.tar.xz
a4-5b4bb5fc2eb5004f45f5c54878961ca74f1b5639.zip
pr_ready
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a013f99..c0a478c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,10 @@ lua_fmt:
echo "===> Formatting"
stylua lua/ --config-path=.stylua.toml
+lua_fmt_check:
+ echo "===> Checking format"
+ stylua lua/ --config-path=.stylua.toml --check
+
lua_lint:
echo "===> Linting"
luacheck lua/ --globals vim
@@ -15,4 +19,4 @@ lua_clean:
echo "===> Cleaning"
rm /tmp/lua_*
-pr-ready: lua_clean lua_fmt lua_lint lua_test
+pr_ready: lua_lint lua_test lua_fmt_check