1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Vue.js linting

This commit is contained in:
2019-03-14 12:19:10 +01:00
parent 2d67b55c60
commit e969384d4c

6
.vim/ftdetect/vue.vim Normal file
View File

@@ -0,0 +1,6 @@
" Run both javascript and vue linters for vue files.
let b:ale_linter_aliases = ['javascript', 'vue']
" Select the eslint and vls linters.
let b:ale_linters = ['eslint', 'vls']
let b:ale_fixers = ['prettier', 'eslint']