mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 04:00:29 +08:00
12 lines
283 B
VimL
Vendored
12 lines
283 B
VimL
Vendored
function! neoformat#formatters#prisma#enabled() abort
|
|
return ['prettier']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#prisma#prettier() abort
|
|
return {
|
|
\ 'exe': 'prettier',
|
|
\ 'args': ['--stdin-filepath', '"%:p"'],
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|