mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-15 23:33:43 +08:00
fix(neomake): include old patch
- e33aeb1b0
- fix(layer): add `:h SpaceVim-layers-lang-vue` (Shidong Wang 3 years, 4 months ago)
This commit is contained in:
parent
97924420c6
commit
05dc9a1756
@ -6,7 +6,7 @@ endfunction
|
||||
|
||||
function! neomake#makers#ft#vue#eslint() abort
|
||||
let maker = neomake#makers#ft#javascript#eslint()
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'html'])
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'vue'])
|
||||
return maker
|
||||
endfunction
|
||||
|
||||
@ -16,13 +16,13 @@ endfunction
|
||||
|
||||
function! neomake#makers#ft#vue#standard() abort
|
||||
let maker = neomake#makers#ft#javascript#standard()
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'html'])
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'vue'])
|
||||
return maker
|
||||
endfunction
|
||||
|
||||
function! neomake#makers#ft#vue#semistandard() abort
|
||||
let maker = neomake#makers#ft#javascript#semistandard()
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'html'])
|
||||
call extend(get(maker, 'args', []), ['--plugin', 'vue'])
|
||||
return maker
|
||||
endfunction
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user