mirror of https://github.com/amix/vimrc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
348 B
11 lines
348 B
" 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'
|
|
\ })
|
|
|