aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters
diff options
context:
space:
mode:
Diffstat (limited to 'lua/conform/formatters')
-rw-r--r--lua/conform/formatters/prettier.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/lua/conform/formatters/prettier.lua b/lua/conform/formatters/prettier.lua
index 5b00d7b..ea45ffb 100644
--- a/lua/conform/formatters/prettier.lua
+++ b/lua/conform/formatters/prettier.lua
@@ -1,16 +1,3 @@
-require("conform").setup({
- formatters = {
- prettier = {
- args = function(ctx)
- if vim.endswith(ctx.filename, ".ejs") then
- return { "--stdin-filepath", "$FILENAME", "--parser", "html" }
- end
- return { "--stdin-filepath", "$FILENAME" }
- end,
- },
- },
-})
-
local util = require("conform.util")
---@type conform.FileFormatterConfig
return {