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