Merge #139 - Add Markdown linting support
This commit is contained in:
parent
95373ddab5
commit
b9428b7db0
@ -45,6 +45,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/) |
|
| JavaScript | [eslint](http://eslint.org/), [jscs](http://jscs.info/), [jshint](http://jshint.com/) |
|
||||||
| JSON | [jsonlint](http://zaa.ch/jsonlint/) |
|
| JSON | [jsonlint](http://zaa.ch/jsonlint/) |
|
||||||
| Lua | [luacheck](https://github.com/mpeterv/luacheck) |
|
| Lua | [luacheck](https://github.com/mpeterv/luacheck) |
|
||||||
|
| Markdown | [mdl](https://github.com/mivok/markdownlint) |
|
||||||
| MATLAB | [mlint](https://www.mathworks.com/help/matlab/ref/mlint.html) |
|
| MATLAB | [mlint](https://www.mathworks.com/help/matlab/ref/mlint.html) |
|
||||||
| Perl | [perl -c](https://perl.org/), [perl-critic](https://metacpan.org/pod/Perl::Critic) |
|
| Perl | [perl -c](https://perl.org/), [perl-critic](https://metacpan.org/pod/Perl::Critic) |
|
||||||
| PHP | [php -l](https://secure.php.net/), [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) |
|
| PHP | [php -l](https://secure.php.net/), [phpcs](https://github.com/squizlabs/PHP_CodeSniffer) |
|
||||||
|
35
ale_linters/markdown/mdl.vim
Normal file
35
ale_linters/markdown/mdl.vim
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
" Author: Steve Dignam <steve@dignam.xyz>
|
||||||
|
" Description: Support for mdl, a markdown linter
|
||||||
|
|
||||||
|
function! ale_linters#markdown#mdl#Handle(buffer, lines) abort
|
||||||
|
" matches: '(stdin):173: MD004 Unordered list style'
|
||||||
|
let l:pattern = ':\(\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': 0,
|
||||||
|
\ 'text': l:match[2],
|
||||||
|
\ 'type': 'W',
|
||||||
|
\ 'nr': -1,
|
||||||
|
\})
|
||||||
|
endfor
|
||||||
|
|
||||||
|
return l:output
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
call ale#linter#Define('markdown', {
|
||||||
|
\ 'name': 'mdl',
|
||||||
|
\ 'executable': 'mdl',
|
||||||
|
\ 'command': 'mdl',
|
||||||
|
\ 'callback': 'ale_linters#markdown#mdl#Handle'
|
||||||
|
\})
|
@ -67,6 +67,7 @@ The following languages and tools are supported.
|
|||||||
* JavaScript: 'eslint', 'jscs', 'jshint'
|
* JavaScript: 'eslint', 'jscs', 'jshint'
|
||||||
* JSON: 'jsonlint'
|
* JSON: 'jsonlint'
|
||||||
* Lua: 'luacheck'
|
* Lua: 'luacheck'
|
||||||
|
* Markdown: 'mdl'
|
||||||
* MATLAB: 'mlint'
|
* MATLAB: 'mlint'
|
||||||
* Perl: 'perl' (-c flag), 'perlcritic'
|
* Perl: 'perl' (-c flag), 'perlcritic'
|
||||||
* PHP: 'php' (-l flag), 'phpcs'
|
* PHP: 'php' (-l flag), 'phpcs'
|
||||||
|
Loading…
Reference in New Issue
Block a user