summaryrefslogtreecommitdiff
path: root/ale_linters/typescript/deno.vim
blob: f47fac7a8ad51602b22ab1d3f7c92ec4106d2265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
" Author: Mohammed Chelouti - https://github.com/motato1
"         Arnold Chand <creativenull@outlook.com>
" Description: Deno lsp linter for TypeScript files.

call ale#linter#Define('typescript', {
\   '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'),
\})