summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorBADR <contact@pythops.com>2023-10-06 02:16:12 +0200
committerGitHub <noreply@github.com>2023-10-05 17:16:12 -0700
commit4c91b5270a6f741850de2eef3a804ff1dc6ec3ee (patch)
tree46b76cfee5593dceefc630fc3570f8fc6b8380f9 /lua
parent603ede87f4676dae5b8170280cafbd2e28d9eaaa (diff)
feat: add justfile formatter (#114)
Diffstat (limited to 'lua')
-rw-r--r--lua/conform/just.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/conform/just.lua b/lua/conform/just.lua
new file mode 100644
index 0000000..5218fc7
--- /dev/null
+++ b/lua/conform/just.lua
@@ -0,0 +1,9 @@
+return {
+ meta = {
+ url = "https://github.com/casey/just",
+ description = "Format Justfile",
+ },
+ command = "just",
+ args = { "--fmt", "--unstable", "-f", "$FILENAME" },
+ stdin = false,
+}