2024-04-14 18:41:15 -07:00
local util = require ( " conform.util " )
return {
{
" stevearc/conform.nvim " ,
-- @class ConformOpts
opts = {
formatters_by_ft = {
-- data/conf
json = { " prettier " } ,
toml = { " taplo " } ,
yaml = { " prettier " } ,
-- web
html = { " prettier " } ,
liquid = { " prettier " } ,
2024-09-30 20:48:17 -07:00
css = { " stylelint " , " prettier " } ,
scss = { " stylelint " , " prettier " } ,
javascript = { " eslint " , " prettier " } ,
typescript = { " eslint " , " prettier " } ,
vue = { " eslint " , " prettier " } ,
2024-04-14 18:41:15 -07:00
markdown = { " prettier " } ,
-- php
php = { " pint " } ,
blade = { " blade-formatter " , " rustywind " } ,
-- shell
sh = { " shellcheck " , " shfmt " } ,
-- misc
ruby = { " prettier " } ,
} ,
formatters = {
shfmt = {
prepend_args = { " --indent=2 " , " --case-indent " , " --binary-next-line " , " --func-next-line " } ,
} ,
pint = {
meta = {
url = " https://github.com/laravel/pint " ,
description = " Laravel Pint is an opinionated PHP code style fixer for minimalists. Pint is built on top of PHP-CS-Fixer and makes it simple to ensure that your code style stays clean and consistent. " ,
} ,
command = util.find_executable ( {
vim.fn . stdpath ( " data " ) .. " /mason/bin/pint " ,
" vendor/bin/pint " ,
} , " pint " ) ,
args = { " $FILENAME " } ,
stdin = false ,
} ,
} ,
} ,
} ,
}