summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/eslint.vim
blob: d6763eef6d89b25993ba99447f19089f9e4832e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
if exists('g:loaded_ale_linters_javascript_eslint')
    finish
endif

let g:loaded_ale_linters_javascript_eslint = 1

function! ale_linters#javascript#eslint#Handle(lines)
    " Matches patterns line the following:
    "
    " <text>:47:14: Missing trailing comma. [Warning/comma-dangle]
    " <text>:56:41: Missing semicolon. [Error/semi]
    let pattern = '^<text>:\(\d\+\):\(\d\+\): \(.\+\) \[\(.\+\)/\(.\+\)\]'
    let output = []

    for line in a:lines
        let match = matchlist(line, pattern)

        if len(match) == 0
            break
        endif

        " vcol is Needed to indicate that the column is a character.
        call add(output, {
        \   'bufnr': bufnr('%'),
        \   'lnum': match[1] + 0,
        \   'vcol': 0,
        \   'col': match[2] + 0,
        \   'text': match[3] . '(' . match[5] . ')',
        \   'type': match[4] ==# 'Warning' ? 'W' : 'E',
        \   'nr': -1,
        \})
    endfor

    return output
endfunction

call ALEAddLinter('javascript', {
\   'executable': 'eslint',
\   'command': 'eslint -f unix --stdin',
\   'callback': 'ale_linters#javascript#eslint#Handle',
\})