aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/makers/ft/javascript.vim
blob: 7bb379f2cf2701f1732b79a47683885b3497e479 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
" vim: ts=4 sw=4 et

function! neomake#makers#ft#javascript#EnabledMakers() abort
    return ['jshint', 'jscs',
                \ executable('eslint_d') ? 'eslint_d' : 'eslint',
                \]
endfunction

function! neomake#makers#ft#javascript#tsc() abort
    return neomake#makers#ft#typescript#tsc()
endfunction

function! neomake#makers#ft#javascript#gjslint() abort
    return {
        \ 'args': ['--nodebug_indentation', '--nosummary', '--unix_mode', '--nobeep'],
        \ 'errorformat': '%f:%l:(New Error -%\\?\%n) %m,' .
        \ '%f:%l:(-%\\?%n) %m,' .
        \ '%-G1 files checked,' .
        \ ' no errors found.,' .
        \ '%-G%.%#'
        \ }
endfunction

function! neomake#makers#ft#javascript#jshint() abort
    return {
        \ 'args': ['--verbose'],
        \ 'errorformat': '%A%f: line %l\, col %v\, %m \(%t%*\d\),%-G,%-G%\\d%\\+ errors',
        \ 'postprocess': function('neomake#postprocess#generic_length'),
        \ }
endfunction

function! neomake#makers#ft#javascript#jscs() abort
    return {
        \ 'args': ['--no-colors', '--reporter', 'inline'],
        \ 'errorformat': '%E%f: line %l\, col %c\, %m',
        \ }
endfunction

function! neomake#makers#ft#javascript#eslint() abort
    let maker = {
        \ 'args': ['--format=compact'],
        \ 'errorformat': '%E%f: line %l\, col %c\, Error - %m,' .
        \   '%W%f: line %l\, col %c\, Warning - %m,%-G,%-G%*\d problems%#',
        \ 'cwd': '%:p:h',
        \ 'output_stream': 'stdout',
        \ }

    function! maker.supports_stdin(_jobinfo) abort
        let self.args += ['--stdin', '--stdin-filename=%:p']
        let self.tempfile_name = ''
        return 1
    endfunction

    return maker
endfunction

function! neomake#makers#ft#javascript#eslint_d() abort
    return neomake#makers#ft#javascript#eslint()
endfunction

function! neomake#makers#ft#javascript#standard() abort
    return {
        \ 'args': ['-v'],
        \ 'errorformat': '%W  %f:%l:%c: %m,%-Gstandard: %.%#'
        \ }
endfunction

function! neomake#makers#ft#javascript#semistandard() abort
    return {
        \ 'errorformat': '%W  %f:%l:%c: %m'
        \ }
endfunction

function! neomake#makers#ft#javascript#rjsx() abort
    return {
        \ 'exe': 'emacs',
        \ 'args': ['%t','--quick','--batch','--eval='
        \ .'(progn(setq package-load-list ''((js2-mode t)(rjsx-mode t)))(package-initialize)(require ''rjsx-mode)'
        \ .'  (setq js2-include-node-externs t js2-include-rhino-externs t js2-include-browser-externs t js2-strict-missing-semi-warning nil)'
        \ .'  (rjsx-mode)(js2-reparse)(js2-display-error-list)'
        \ .'  (princ(replace-regexp-in-string "^" (concat buffer-file-name " ")'
        \ .'  (with-current-buffer "*js-lint*" (buffer-substring-no-properties(point-min)(point-max)))))(terpri))'],
        \ 'errorformat': '%f line %l: %m,%-G%.%#',
        \ 'append_file': 0,
        \ }
endfunction

function! neomake#makers#ft#javascript#flow() abort
    return {
        \ 'args': ['--from=vim', '--show-all-errors'],
        \ 'errorformat':
        \   '%-GNo errors!,'
        \   .'%EFile "%f"\, line %l\, characters %c-%m,'
        \   .'%trror: File "%f"\, line %l\, characters %c-%m,'
        \   .'%C%m,%Z',
        \ 'postprocess': function('neomake#makers#ft#javascript#FlowProcess')
        \ }
endfunction

function! neomake#makers#ft#javascript#FlowProcess(entry) abort
    let lines = split(a:entry.text, '\n')
    if !empty(lines)
        let a:entry.text = join(lines[1:])
        let a:entry.length = lines[0] - a:entry.col + 1
    endif
endfunction

function! neomake#makers#ft#javascript#xo() abort
    return {
        \ 'args': ['--compact'],
        \ 'errorformat': '%E%f: line %l\, col %c\, Error - %m,' .
        \ '%W%f: line %l\, col %c\, Warning - %m',
        \ }
endfunction

function! neomake#makers#ft#javascript#stylelint() abort
    return neomake#makers#ft#css#stylelint()
endfunction