repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
b4c8714
parent
f05631e
author
Eric Bower
date
2022-12-14 21:35:05 +0000 UTC
add make rules for lint and format
1 files changed,  +8, -0
M Makefile
+8, -0
 1@@ -49,3 +49,11 @@ upload:
 2 
 3 deploy: scrape build upload
 4 .PHONY: deploy
 5+
 6+format:
 7+	deno fmt
 8+.PHONY: format
 9+
10+test:
11+	deno lint
12+.PHONY: test