summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-07 22:16:29 +0100
committerw0rp <devw0rp@gmail.com>2016-10-07 22:16:29 +0100
commit197137aea0cd4816a3705d3d63e7bb0d61516c87 (patch)
treed8a10f270d2c6fad8a764f344b2954defc50f524
parent4489514e4b3edb4376040ed217c95b5ccb489bb0 (diff)
downloadale-197137aea0cd4816a3705d3d63e7bb0d61516c87.zip
Add support for Pug with pug-lint.
-rw-r--r--README.md1
-rw-r--r--ale_linters/pug/puglint.vim44
-rw-r--r--doc/ale.txt1
3 files changed, 46 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8f2e74f9..d43a7c2f 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,7 @@ name. That seems to be the fairest way to arrange this table.
| JavaScript | [eslint](http://eslint.org/), [jscs](http://jscs.info/), [jshint](http://jshint.com/) |
| JSON | [jsonlint](http://zaa.ch/jsonlint/) |
| PHP | [php -l](https://secure.php.net/), [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) |
+| Pug | [pug-lint](https://github.com/pugjs/pug-lint) |
| Python | [flake8](http://flake8.pycqa.org/en/latest/) |
| Ruby | [rubocop](https://github.com/bbatsov/rubocop) |
| SASS | [sass-lint](https://www.npmjs.com/package/sass-lint) |
diff --git a/ale_linters/pug/puglint.vim b/ale_linters/pug/puglint.vim
new file mode 100644
index 00000000..d59c7f06
--- /dev/null
+++ b/ale_linters/pug/puglint.vim
@@ -0,0 +1,44 @@
+" Author: w0rp - <devw0rp@gmail.com>
+" Description: pug-lint for checking Pug/Jade files.
+
+if exists('g:loaded_ale_linters_pug_puglint')
+ finish
+endif
+
+let g:loaded_ale_linters_pug_puglint = 1
+
+function! ale_linters#pug#puglint#Handle(buffer, lines)
+ " Matches patterns like the following:
+ "
+ " temp.jade:6:1 The end of the string reached with no closing bracket ) found.
+ let pattern = '^.\+:\(\d\+\):\(\d\+\) \(.\+\)$'
+ let output = []
+
+ for line in a:lines
+ let l:match = matchlist(line, pattern)
+
+ if len(l:match) == 0
+ continue
+ endif
+
+ call add(output, {
+ \ 'bufnr': a:buffer,
+ \ 'lnum': l:match[1] + 0,
+ \ 'vcol': 0,
+ \ 'col': l:match[2] + 0,
+ \ 'text': l:match[3],
+ \ 'type': 'E',
+ \ 'nr': -1,
+ \})
+ endfor
+
+ return output
+endfunction
+
+call ALEAddLinter('pug', {
+\ 'name': 'puglint',
+\ 'executable': 'pug-lint',
+\ 'output_stream': 'stderr',
+\ 'command': g:ale#util#stdin_wrapper . ' .pug pug-lint -r inline',
+\ 'callback': 'ale_linters#pug#puglint#Handle',
+\})
diff --git a/doc/ale.txt b/doc/ale.txt
index 415eb161..5ec2852a 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -52,6 +52,7 @@ The following languages and tools are supported.
* JavaScript: 'eslint', 'jscs', 'jshint'
* JSON: 'jsonlint'
* PHP: 'php' (-l flag), 'phpcs'
+* Pug: 'pug-lint'
* Python: 'flake8'
* Ruby: 'rubocop'
* SASS: 'sasslint'