summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorAlistair Bill <alistair.bill@gmail.com>2017-03-03 21:45:48 +0000
committerAlistair Bill <alistair.bill@gmail.com>2017-03-05 20:36:29 +0000
commitbe57b545b73224bc92e0ecc87e16efb1c274dcb4 (patch)
tree246f51b91e48144c7654cfb5df90971662770bc9 /ale_linters
parent76df2d393b6b79f1f0d3095589e7f3ac90de2b40 (diff)
downloadale-be57b545b73224bc92e0ecc87e16efb1c274dcb4.zip
Add support for nix linting
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/nix/nix.vim34
1 files changed, 34 insertions, 0 deletions
diff --git a/ale_linters/nix/nix.vim b/ale_linters/nix/nix.vim
new file mode 100644
index 00000000..27c1d51a
--- /dev/null
+++ b/ale_linters/nix/nix.vim
@@ -0,0 +1,34 @@
+" Author: Alistair Bill <@alibabzo>
+" Description: nix-instantiate linter for nix files
+
+function! ale_linters#nix#nix#Handle(buffer, lines) abort
+
+ let l:pattern = '^\(.\+\): \(.\+\), at .*:\(\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[3] + 0,
+ \ 'col': l:match[4] + 0,
+ \ 'text': l:match[1] . ': ' . l:match[2],
+ \ 'type': l:match[1] =~# '^error' ? 'E' : 'W',
+ \})
+ endfor
+
+ return l:output
+endfunction
+
+call ale#linter#Define('nix', {
+\ 'name': 'nix',
+\ 'output_stream': 'stderr',
+\ 'executable': 'nix-instantiate',
+\ 'command': 'nix-instantiate --parse -',
+\ 'callback': 'ale_linters#nix#nix#Handle',
+\})