summaryrefslogtreecommitdiff
path: root/ale_linters/cs/mcs.vim
diff options
context:
space:
mode:
authorJunfeng Li <autozimu@gmail.com>2017-01-15 07:42:17 -0500
committerw0rp <w0rp@users.noreply.github.com>2017-01-15 12:42:17 +0000
commit8762a6fa665b54c8a24bfe0139f4ee8cb2a52b99 (patch)
treeae3140610b6f88f413f878cca4d995b7b618f337 /ale_linters/cs/mcs.vim
parent74e7a283c052969afdb71a06199b11995626fdd9 (diff)
downloadale-8762a6fa665b54c8a24bfe0139f4ee8cb2a52b99.zip
Support C# linting with mono compiler mcs. (#250)
* Support netcore project linting. * Support check on the fly. * Remove debug. * Rename csc.vim to mcs.vim as it should be. * Update README. * Update doc. * Using `=~#` instead of `=~`.
Diffstat (limited to 'ale_linters/cs/mcs.vim')
-rw-r--r--ale_linters/cs/mcs.vim40
1 files changed, 40 insertions, 0 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',
+\ })
+