10 lines
259 B
VimL
10 lines
259 B
VimL
" Author: chew-z https://github.com/chew-z
|
|
" Description: vale for Markdown files
|
|
|
|
call ale#linter#Define('mail', {
|
|
\ 'name': 'vale',
|
|
\ 'executable': 'vale',
|
|
\ 'command': 'vale --output=line %t',
|
|
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
|
|
\})
|