mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-02 01:30:28 +08:00
10 lines
223 B
VimL
10 lines
223 B
VimL
function! neomake#makers#ft#jasmine#SupersetOf() abort
|
|
return 'javascript'
|
|
endfunction
|
|
|
|
function! neomake#makers#ft#jasmine#EnabledMakers() abort
|
|
return ['jshint', 'eslint', 'jscs']
|
|
endfunction
|
|
|
|
" vim: ts=4 sw=4 et
|