2018-03-31 10:55:20 -04:00
|
|
|
" Author: Ty-Lucas Kelley <tylucaskelley@gmail.com>
|
|
|
|
" Description: Adds support for markdownlint
|
|
|
|
|
|
|
|
call ale#linter#Define('markdown', {
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'name': 'markdownlint',
|
|
|
|
\ 'executable': 'markdownlint',
|
|
|
|
\ 'lint_file': 1,
|
|
|
|
\ 'output_stream': 'both',
|
|
|
|
\ 'command': 'markdownlint %s',
|
|
|
|
\ 'callback': 'ale#handlers#markdownlint#Handle'
|
|
|
|
\})
|