summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2016-09-15 21:00:57 +0100
committerGitHub <noreply@github.com>2016-09-15 21:00:57 +0100
commitd97d05e508fc5b4542bfbb30f1b1b2c0b72eac10 (patch)
tree493a955c98402f0fe2e505aea5f8d2caffcd38a4 /ale_linters
parent36b25a5da41cd9e6b8835f03b0e74b60ff6953e3 (diff)
parent8c7b158690a02da57466caa91d3aa5d9dc8c51fc (diff)
downloadale-d97d05e508fc5b4542bfbb30f1b1b2c0b72eac10.zip
Merge pull request #1 from fijshion/jscslinter
Add jscs linter
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/javascript/jscs.vim47
1 files changed, 47 insertions, 0 deletions
diff --git a/ale_linters/javascript/jscs.vim b/ale_linters/javascript/jscs.vim
new file mode 100644
index 00000000..2be08e92
--- /dev/null
+++ b/ale_linters/javascript/jscs.vim
@@ -0,0 +1,47 @@
+if exists('g:loaded_ale_linters_javascript_jscs')
+ finish
+endif
+
+let g:loaded_ale_linters_javascript_jscs = 1
+
+function! ale_linters#javascript#jscs#Handle(buffer, lines)
+ " Matches patterns line the following:
+ "
+ " input:57:8: Unexpected token (57:8)
+ let pattern = '^.\+:\(\d\+\):\(\d\+\): \(.\+\)'
+ let output = []
+
+ for line in a:lines
+ let l:match = matchlist(line, pattern)
+
+ if len(l:match) == 0
+ continue
+ endif
+
+ let text = l:match[3]
+ let marker_parts = l:match[4]
+
+ if len(marker_parts) == 2
+ let text = text . ' (' . marker_parts[1] . ')'
+ endif
+
+ " vcol is Needed to indicate that the column is a character.
+ call add(output, {
+ \ 'bufnr': a:buffer,
+ \ 'lnum': l:match[1] + 0,
+ \ 'vcol': 0,
+ \ 'col': l:match[2] + 0,
+ \ 'text': text,
+ \ 'type': 'E',
+ \ 'nr': -1,
+ \})
+ endfor
+
+ return output
+endfunction
+
+call ALEAddLinter('javascript', {
+\ 'executable': 'jscs',
+\ 'command': 'jscs -r unix -n -',
+\ 'callback': 'ale_linters#javascript#jscs#Handle',
+\})