aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2023-10-05 18:24:49 -0700
committerSteven Arcangeli <stevearc@stevearc.com>2023-10-05 18:24:49 -0700
commit8217144491e8aba3a24828a71ee768b007a2ec43 (patch)
tree7a84cf7b7dc2f887d4d41a1e9364e379f99187cf /lua/conform/formatters
parent4c91b5270a6f741850de2eef3a804ff1dc6ec3ee (diff)
fix: move justfile formatter to correct directory
Diffstat (limited to 'lua/conform/formatters')
-rw-r--r--lua/conform/formatters/just.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/conform/formatters/just.lua b/lua/conform/formatters/just.lua
new file mode 100644
index 0000000..5218fc7
--- /dev/null
+++ b/lua/conform/formatters/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,
+}