Added eslint config

main
mandlm 2021-01-15 09:46:31 +01:00
parent d8be2b09ac
commit 4dcab39d5b
Signed by: mandlm
GPG Key ID: 4AA25D647AA54CC7
2 changed files with 14 additions and 11 deletions

View File

@ -1,15 +1,16 @@
{
"coc.preferences.formatOnSaveFiletypes": [
"cpp",
"javascript",
"typescript",
"typescriptreact",
"json",
"markdown",
"python",
"rust",
"toml",
"yaml"
"cpp",
"javascript",
"typescript",
"typescriptreact",
"json",
"markdown",
"python",
"rust",
"toml",
"yaml"
],
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd"
"clangd.path": "/home/mandlm/.config/coc/extensions/coc-clangd-data/install/11.0.0/clangd_11.0.0/bin/clangd",
"eslint.format.enable": true
}

View File

@ -159,6 +159,7 @@ set updatetime=300
let g:coc_global_extensions = [
\ 'coc-clangd',
\ 'coc-cmake',
\ 'coc-eslint',
\ 'coc-html',
\ 'coc-json',
\ 'coc-python',
@ -174,6 +175,7 @@ nnoremap <silent> K :call CocAction('doHover')<CR>
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gr <Plug>(coc-references)
nmap <silent> ga <Plug>(coc-codeaction)
nmap <silent> <leader>rn <Plug>(coc-rename)
" use <tab> for trigger completion and navigate to the next complete item