e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
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'),
|
|
\})
|