mirror of
https://github.com/dense-analysis/ale
synced 2024-12-13 01:46:34 +00:00
55ca96bd83
https://github.com/wooorm/alex Enabled for text-like file formats and documented in README and doc.
11 lines
272 B
VimL
11 lines
272 B
VimL
" Author: Johannes Wienke <languitar@semipol.de>
|
|
" Description: alex for text files
|
|
|
|
call ale#linter#Define('text', {
|
|
\ 'name': 'alex',
|
|
\ 'executable': 'alex',
|
|
\ 'command': 'alex %t -t',
|
|
\ 'output_stream': 'stderr',
|
|
\ 'callback': 'ale#handlers#alex#Handle',
|
|
\})
|