diff options
author | Alvaro Sevilla <alvaro@chainalysis.com> | 2021-07-05 04:38:44 +0100 |
---|---|---|
committer | Alvaro Sevilla <alvaro@chainalysis.com> | 2021-07-05 04:38:44 +0100 |
commit | e5c4504e154bbbea923f0d6232a4715cf60a7cf3 (patch) | |
tree | fd3d9f38dee25ae525e2c9df26a4e2b4e4eeec72 /Makefile | |
download | minitab.nvim-e5c4504e154bbbea923f0d6232a4715cf60a7cf3.tar.xz minitab.nvim-e5c4504e154bbbea923f0d6232a4715cf60a7cf3.zip |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3f3f8d6 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.DEFAULT_GOAL = check + +lint: + @luacheck lua/luatab + +format: + @for file in `find . -name '*.lua'`;do lua-format $$file -i; done; + +check: lint test |