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.
10 lines
340 B
10 lines
340 B
5 years ago
|
" Author: Sumner Evans <sumner.evans98@gmail.com>
|
||
|
" Description: write-good for Markdown files
|
||
|
|
||
|
call ale#linter#Define('markdown', {
|
||
|
\ 'name': 'write-good',
|
||
|
\ 'executable_callback': 'ale#handlers#writegood#GetExecutable',
|
||
|
\ 'command_callback': 'ale#handlers#writegood#GetCommand',
|
||
|
\ 'callback': 'ale#handlers#writegood#Handle',
|
||
|
\})
|