We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a355105 commit 45d379cCopy full SHA for 45d379c
1 file changed
Justfile
@@ -0,0 +1,14 @@
1
+set quiet := true
2
+
3
+masonPath := "$HOME/.local/share/nvim/mason/bin/"
4
5
+#───────────────────────────────────────────────────────────────────────────────
6
7
+stylua:
8
+ #!/usr/bin/env zsh
9
+ {{ masonPath }}/stylua --check --output-format=summary . && return 0
10
+ {{ masonPath }}/stylua .
11
+ echo "\nFiles formatted."
12
13
+lua_ls_check:
14
+ {{ masonPath }}/lua-language-server --check .
0 commit comments