11 lines
335 B
VimL
11 lines
335 B
VimL
" Author: Ty-Lucas Kelley <tylucaskelley@gmail.com>
|
|
" Description: Adds support for markdownlint
|
|
|
|
call ale#linter#Define('markdown', {
|
|
\ 'name': 'markdownlint',
|
|
\ 'executable': 'markdownlint',
|
|
\ 'lint_file': 1,
|
|
\ 'output_stream': 'both',
|
|
\ 'command': 'markdownlint %s',
|
|
\ 'callback': 'ale#handlers#markdownlint#Handle'
|
|
\})
|