diff options
author | Francisco Lopes <francisco@oblita.com> | 2019-02-03 03:04:23 -0200 |
---|---|---|
committer | Francisco Lopes <francisco@oblita.com> | 2019-02-03 03:09:51 -0200 |
commit | 626572a53962d47545fcc67e2045d3eb984cbef1 (patch) | |
tree | e2a59a89c5862634723ef7a4caef1640d882f497 /ale_linters | |
parent | 4d426bf2873c6e1cd2c71e478c756903307628d3 (diff) | |
download | ale-626572a53962d47545fcc67e2045d3eb984cbef1.zip |
linter/cypher: add cypher-lint
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/cypher/cypher_lint.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/ale_linters/cypher/cypher_lint.vim b/ale_linters/cypher/cypher_lint.vim new file mode 100644 index 00000000..c72abf45 --- /dev/null +++ b/ale_linters/cypher/cypher_lint.vim @@ -0,0 +1,26 @@ +" Author: Francisco Lopes <francisco@oblita.com> +" Description: Linting for Neo4j's Cypher + +function! ale_linters#cypher#cypher_lint#Handle(buffer, lines) abort + let l:pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):(\d+): (.*)$' + let l:output = [] + + for l:match in ale#util#GetMatches(a:lines, l:pattern) + call add(l:output, { + \ 'lnum': l:match[2] + 0, + \ 'col': l:match[3] + 0, + \ 'text': l:match[4], + \ 'type': 'E', + \}) + endfor + + return l:output +endfunction + +call ale#linter#Define('cypher', { +\ 'name': 'cypher_lint', +\ 'executable': 'cypher-lint', +\ 'command': 'cypher-lint %s', +\ 'output_stream': 'stderr', +\ 'callback': 'ale_linters#cypher#cypher_lint#Handle', +\}) |