summaryrefslogtreecommitdiffstats
path: root/ftplugin/vue.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2018-10-08 19:00:59 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2018-10-08 19:00:59 +0200
commitfd74d8b2b170b540680a9bbf6c64990f8ebafd08 (patch)
treeb1fdef6203a78a21053d1b8e0666ab7a38c36df2 /ftplugin/vue.vim
parent055f7710b65dfa2df52fc0b5be2486ae36ac5751 (diff)
downloadvim-polyglot-fd74d8b2b170b540680a9bbf6c64990f8ebafd08.tar.gz
vim-polyglot-fd74d8b2b170b540680a9bbf6c64990f8ebafd08.zip
Updatev3.3.3
Diffstat (limited to 'ftplugin/vue.vim')
-rw-r--r--ftplugin/vue.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftplugin/vue.vim b/ftplugin/vue.vim
index 959dca4e..2f57d65d 100644
--- a/ftplugin/vue.vim
+++ b/ftplugin/vue.vim
@@ -22,7 +22,7 @@ endif
" Run only ESLint for Vue files by default.
" linters specifically for Vue can still be loaded.
-let b:ale_linter_aliases = ['vue', 'javascript']
-let b:ale_linters = ['eslint']
+let b:ale_linter_aliases = get(get(g:, 'ale_linter_aliases', {}), 'vue', ['vue', 'javascript'])
+let b:ale_linters = get(get(g:, 'ale_linters', {}), 'vue', ['eslint', 'vls'])
endif