mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-21 09:33:44 +08:00
12 lines
307 B
VimL
12 lines
307 B
VimL
function! neoformat#formatters#graphql#enabled() abort
|
|
return ['prettier']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#graphql#prettier() abort
|
|
return {
|
|
\ 'exe': 'prettier',
|
|
\ 'args': ['--stdin-filepath', '"%:p"', '--parser', 'graphql'],
|
|
\ 'stdin': 1
|
|
\ }
|
|
endfunction
|