diff options
author | w0rp <w0rp@users.noreply.github.com> | 2017-12-18 15:28:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 15:28:27 +0000 |
commit | 5577d567d13ab922ee1c97fc5d17d468f4c30876 (patch) | |
tree | 39ab63b79ac95dc4e1f763eb1f0c45449c3118f8 /ale_linters/rst/alex.vim | |
parent | fdaac9bd781baf85d04d6b3138a2b80cd7b3a25d (diff) | |
parent | 1e574ed5f7c9d3b6b0b3b4d209984102eba079b2 (diff) | |
download | ale-5577d567d13ab922ee1c97fc5d17d468f4c30876.zip |
Merge pull request #1238 from languitar/alex-from-file
Make alex a file linter
Diffstat (limited to 'ale_linters/rst/alex.vim')
-rw-r--r-- | ale_linters/rst/alex.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ale_linters/rst/alex.vim b/ale_linters/rst/alex.vim index 1fed7233..e637eae7 100644 --- a/ale_linters/rst/alex.vim +++ b/ale_linters/rst/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('rst', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) |