diff options
author | Johannes Wienke <languitar@semipol.de> | 2017-12-18 15:26:52 +0100 |
---|---|---|
committer | Johannes Wienke <languitar@semipol.de> | 2017-12-18 15:26:52 +0100 |
commit | 1e574ed5f7c9d3b6b0b3b4d209984102eba079b2 (patch) | |
tree | 39ab63b79ac95dc4e1f763eb1f0c45449c3118f8 /ale_linters/html/alex.vim | |
parent | fdaac9bd781baf85d04d6b3138a2b80cd7b3a25d (diff) | |
download | ale-1e574ed5f7c9d3b6b0b3b4d209984102eba079b2.zip |
Make alex a file linter
alex does not find its configuration file when using temporary files for
input.
Diffstat (limited to 'ale_linters/html/alex.vim')
-rw-r--r-- | ale_linters/html/alex.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/html/alex.vim b/ale_linters/html/alex.vim index 85dc4fd6..5a1f61e9 100644 --- a/ale_linters/html/alex.vim +++ b/ale_linters/html/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('html', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) |