|
|
|
@ -2,13 +2,14 @@ require('conform').setup {
|
|
|
|
|
formatters_by_ft = {
|
|
|
|
|
lua = { 'stylua' },
|
|
|
|
|
python = { 'black' }, --'isort',
|
|
|
|
|
javascript = { { 'prettierd', 'prettier' } },
|
|
|
|
|
javascriptreact = { { 'prettier' } },
|
|
|
|
|
typescriptreact = { { 'prettier' } },
|
|
|
|
|
typescript = { { 'prettier' } },
|
|
|
|
|
javascript = { "prettierd", "prettier", stop_after_first = true },
|
|
|
|
|
javascriptreact = { 'prettier' },
|
|
|
|
|
typescriptreact = { 'prettier' },
|
|
|
|
|
typescript = { 'prettier' },
|
|
|
|
|
xml = { 'prettier', 'xmlformat' },
|
|
|
|
|
html = { { 'prettier' } },
|
|
|
|
|
go = { { 'gofumpt', 'goimports-reviser', 'golines' } },
|
|
|
|
|
html = { 'prettier' },
|
|
|
|
|
htmldjango = { 'prettier' },
|
|
|
|
|
go = { 'gofumpt', 'goimports-reviser', 'golines', stop_after_first = true },
|
|
|
|
|
java = { 'google-java-format' },
|
|
|
|
|
templ = { 'templ' },
|
|
|
|
|
},
|
|
|
|
|