summaryrefslogtreecommitdiff
path: root/ale_linters/javascript/jshint.vim
blob: 61f8faa828b32c3c4631e031b3d8cd12ac394d5a (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
" Author: Chris Kyrouac - https://github.com/fijshion
" Description: JSHint for Javascript files

if exists('g:loaded_ale_linters_javascript_jshint')
    finish
endif

let g:loaded_ale_linters_javascript_jshint = 1

" Set this to the location of the jshint configuration file
if !exists('g:ale_jshint_config_loc')
    let g:ale_jshint_config_loc = '.jshintrc'
endif

function! ale_linters#javascript#jshint#Handle(buffer, lines)
    " Matches patterns line the following:
    "
    " stdin:57:9: Missing name in function declaration.
    " stdin:60:5: Attempting to override 'test2' which is a constant.
    " stdin:57:10: 'test' is defined but never used.
    " stdin:57:1: 'function' is defined but never used.
    let pattern = '^.\+:\(\d\+\):\(\d\+\): \(.\+\)'
    let output = []

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

        if len(l:match) == 0
            continue
        endif

        let text = l:match[3]
        let marker_parts = l:match[4]

        if len(marker_parts) == 2
            let text = text . ' (' . marker_parts[1] . ')'
        endif

        " vcol is Needed to indicate that the column is a character.
        call add(output, {
        \   'bufnr': a:buffer,
        \   'lnum': l:match[1] + 0,
        \   'vcol': 0,
        \   'col': l:match[2] + 0,
        \   'text': text,
        \   'type': 'E',
        \   'nr': -1,
        \})
    endfor

    return output
endfunction

call ALEAddLinter('javascript', {
\   'name': 'jshint',
\   'executable': 'jshint',
\   'command': 'jshint --reporter unix --config ' . g:ale_jshint_config_loc . ' -',
\   'callback': 'ale_linters#javascript#jshint#Handle',
\})

call ALEAddLinter('javascript.jsx', {
\   'name': 'jshint',
\   'executable': 'jshint',
\   'command': 'jshint --reporter unix --config ' . g:ale_jshint_config_loc . ' -',
\   'callback': 'ale_linters#javascript#jshint#Handle',
\})