mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 19:40:05 +08:00
16 lines
238 B
Lua
16 lines
238 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.enabled()
|
||
|
return {'prettier'}
|
||
|
end
|
||
|
|
||
|
function M.prettier(opt)
|
||
|
return {
|
||
|
exe = 'prettier',
|
||
|
args = {'--stdin-filepath', opt.filepath},
|
||
|
stdin = true,
|
||
|
}
|
||
|
end
|
||
|
|
||
|
return M
|