11 lines
427 B
VimL
11 lines
427 B
VimL
" Author: Arnold Chand <creativenull@outlook.com>
|
|
" Description: Deno lsp linter for JavaScript files.
|
|
|
|
call ale#linter#Define('javascript', {
|
|
\ 'name': 'deno',
|
|
\ 'lsp': 'stdio',
|
|
\ 'executable': function('ale#handlers#deno#GetExecutable'),
|
|
\ 'command': '%e lsp',
|
|
\ 'project_root': function('ale#handlers#deno#GetProjectRoot'),
|
|
\ 'initialization_options': function('ale#handlers#deno#GetInitializationOptions'),
|
|
\})
|