mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
12 lines
449 B
VimL
12 lines
449 B
VimL
call coc#add_extension('coc-tsserver', 'coc-eslint', 'coc-prettier')
|
|
let g:coc_filetypes += ['javascript', 'javascript.jsx', 'typescript', 'typescript.jsx']
|
|
call coc#config('eslint', {
|
|
\ 'filetypes': ['javascript', 'javascriptreact', 'typescript', 'typescriptreact'],
|
|
\ 'autoFixOnSave': v:true,
|
|
\ })
|
|
call coc#config('prettier', {
|
|
\ 'singleQuote': v:true,
|
|
\ 'trailingComma': 'all',
|
|
\ 'jsxBracketSameLine': v:true,
|
|
\ 'eslintIntegration': v:true,
|
|
\ })
|