1e574ed5f7
alex does not find its configuration file when using temporary files for input.
12 lines
300 B
VimL
12 lines
300 B
VimL
" Author: Johannes Wienke <languitar@semipol.de>
|
|
" Description: alex for markdown files
|
|
|
|
call ale#linter#Define('markdown', {
|
|
\ 'name': 'alex',
|
|
\ 'executable': 'alex',
|
|
\ 'command': 'alex %s -t',
|
|
\ 'output_stream': 'stderr',
|
|
\ 'callback': 'ale#handlers#alex#Handle',
|
|
\ 'lint_file': 1,
|
|
\})
|