aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancesco Pasqua <cesconix@me.com>2023-11-18 03:46:51 +0100
committerGitHub <noreply@github.com>2023-11-17 18:46:51 -0800
commitc2963fd63859e51f468caae7d599cd4b30bfd2a3 (patch)
treef78c9dbe99e7decf414fbc2d0c63199ea6f07cd4
parent4524a687107c6e598017dc7356b7cd1eb046aa71 (diff)
chore: remove $FILENAME from standardjs config (#206)
-rw-r--r--lua/conform/formatters/standardjs.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/formatters/standardjs.lua b/lua/conform/formatters/standardjs.lua
index d08eaea..365e738 100644
--- a/lua/conform/formatters/standardjs.lua
+++ b/lua/conform/formatters/standardjs.lua
@@ -7,5 +7,5 @@ return {
description = "JavaScript Standard style guide, linter, and formatter.",
},
command = util.from_node_modules("standard"),
- args = { "--fix", "--stdin", "$FILENAME" },
+ args = { "--fix", "--stdin" },
}