12 lines
296 B
VimL
12 lines
296 B
VimL
|
" Author: Johannes Wienke <languitar@semipol.de>
|
||
|
" Description: alex for asciidoc files
|
||
|
|
||
|
call ale#linter#Define('help', {
|
||
|
\ 'name': 'alex',
|
||
|
\ 'executable': 'alex',
|
||
|
\ 'command': 'alex %s -t',
|
||
|
\ 'output_stream': 'stderr',
|
||
|
\ 'callback': 'ale#handlers#alex#Handle',
|
||
|
\ 'lint_file': 1,
|
||
|
\})
|