diff options
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/cs/mcs.vim | 40 | ||||
-rw-r--r-- | ale_linters/verilog/verilator.vim | 29 |
2 files changed, 56 insertions, 13 deletions
diff --git a/ale_linters/cs/mcs.vim b/ale_linters/cs/mcs.vim new file mode 100644 index 00000000..edf3bd27 --- /dev/null +++ b/ale_linters/cs/mcs.vim @@ -0,0 +1,40 @@ +if !exists('g:ale_cs_mcs_options') + let g:ale_cs_mcs_options = '' +endif + +function! ale_linters#cs#mcs#Handle(buffer, lines) abort + " Look for lines like the following. + " + " Tests.cs(12,29): error CSXXXX: ; expected + let l:pattern = '^.\+.cs(\(\d\+\),\(\d\+\)): \(.\+\): \(.\+\)' + let l:output = [] + + for l:line in a:lines + let l:match = matchlist(l:line, l:pattern) + + if len(l:match) == 0 + continue + endif + + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:match[1] + 0, + \ 'vcol': 0, + \ 'col': l:match[2] + 0, + \ 'text': l:match[3] . ': ' . l:match[4], + \ 'type': l:match[3] =~# '^error' ? 'E' : 'W', + \ 'nr': -1, + \}) + endfor + + return l:output +endfunction + +call ale#linter#Define('cs',{ +\ 'name': 'mcs', +\ 'output_stream': 'stderr', +\ 'executable': 'mcs', +\ 'command': g:ale#util#stdin_wrapper . ' .cs mcs -unsafe --parse' . g:ale_cs_mcs_options, +\ 'callback': 'ale_linters#cs#mcs#Handle', +\ }) + diff --git a/ale_linters/verilog/verilator.vim b/ale_linters/verilog/verilator.vim index 440edeca..d8e105a2 100644 --- a/ale_linters/verilog/verilator.vim +++ b/ale_linters/verilog/verilator.vim @@ -10,7 +10,7 @@ function! ale_linters#verilog#verilator#Handle(buffer, lines) " %Warning-UNDRIVEN: test.v:3: Signal is not driven: clk " %Warning-UNUSED: test.v:4: Signal is not used: dout " %Warning-BLKSEQ: test.v:10: Blocking assignments (=) in sequential (flop or latch) block; suggest delayed assignments (<=). - let l:pattern = '^%\(Warning\|Error\)[^:]*:[^:]\+:\(\d\+\): \(.\+\)$' + let l:pattern = '^%\(Warning\|Error\)[^:]*:\([^:]\+\):\(\d\+\): \(.\+\)$' let l:output = [] for l:line in a:lines @@ -20,19 +20,22 @@ function! ale_linters#verilog#verilator#Handle(buffer, lines) continue endif - let l:line = l:match[2] + 0 + let l:line = l:match[3] + 0 let l:type = l:match[1] ==# 'Error' ? 'E' : 'W' - let l:text = l:match[3] + let l:text = l:match[4] + let l:file = l:match[2] - call add(l:output, { - \ 'bufnr': a:buffer, - \ 'lnum': l:line, - \ 'vcol': 0, - \ 'col': 1, - \ 'text': l:text, - \ 'type': l:type, - \ 'nr': -1, - \}) + if(l:file =~# '_verilator_linted.v') + call add(l:output, { + \ 'bufnr': a:buffer, + \ 'lnum': l:line, + \ 'vcol': 0, + \ 'col': 1, + \ 'text': l:text, + \ 'type': l:type, + \ 'nr': -1, + \}) + endif endfor return l:output @@ -42,6 +45,6 @@ call ale#linter#Define('verilog', { \ 'name': 'verilator', \ 'output_stream': 'stderr', \ 'executable': 'verilator', -\ 'command': g:ale#util#stdin_wrapper . ' .v verilator --lint-only -Wall -Wno-DECLFILENAME', +\ 'command': g:ale#util#stdin_wrapper . ' _verilator_linted.v verilator --lint-only -Wall -Wno-DECLFILENAME', \ 'callback': 'ale_linters#verilog#verilator#Handle', \}) |