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 | |
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')
-rw-r--r-- | ale_linters/asciidoc/alex.vim | 5 | ||||
-rw-r--r-- | ale_linters/help/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/html/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/mail/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/markdown/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/nroff/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/pod/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/rst/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/tex/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/texinfo/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/text/alex.vim | 3 | ||||
-rw-r--r-- | ale_linters/xhtml/alex.vim | 3 |
12 files changed, 25 insertions, 13 deletions
diff --git a/ale_linters/asciidoc/alex.vim b/ale_linters/asciidoc/alex.vim index a1e50def..79b04fc3 100644 --- a/ale_linters/asciidoc/alex.vim +++ b/ale_linters/asciidoc/alex.vim @@ -1,10 +1,11 @@ " Author: Johannes Wienke <languitar@semipol.de> " Description: alex for asciidoc files -call ale#linter#Define('asciidoc', { +call ale#linter#Define('help', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/help/alex.vim b/ale_linters/help/alex.vim index 9b3e4ee4..21b23b4f 100644 --- a/ale_linters/help/alex.vim +++ b/ale_linters/help/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('help', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) 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, \}) diff --git a/ale_linters/mail/alex.vim b/ale_linters/mail/alex.vim index 047e6cf0..b0651ccd 100644 --- a/ale_linters/mail/alex.vim +++ b/ale_linters/mail/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('mail', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/markdown/alex.vim b/ale_linters/markdown/alex.vim index 1e3e3681..29306141 100644 --- a/ale_linters/markdown/alex.vim +++ b/ale_linters/markdown/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('markdown', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/nroff/alex.vim b/ale_linters/nroff/alex.vim index 911ac413..a10db2dd 100644 --- a/ale_linters/nroff/alex.vim +++ b/ale_linters/nroff/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('nroff', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/pod/alex.vim b/ale_linters/pod/alex.vim index 8bc205d4..5c09befb 100644 --- a/ale_linters/pod/alex.vim +++ b/ale_linters/pod/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('pod', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) 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, \}) diff --git a/ale_linters/tex/alex.vim b/ale_linters/tex/alex.vim index da82856b..78c530f7 100644 --- a/ale_linters/tex/alex.vim +++ b/ale_linters/tex/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('tex', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/texinfo/alex.vim b/ale_linters/texinfo/alex.vim index 41969fdb..4a884579 100644 --- a/ale_linters/texinfo/alex.vim +++ b/ale_linters/texinfo/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('texinfo', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/text/alex.vim b/ale_linters/text/alex.vim index 32d8ce2a..c696367b 100644 --- a/ale_linters/text/alex.vim +++ b/ale_linters/text/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('text', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) diff --git a/ale_linters/xhtml/alex.vim b/ale_linters/xhtml/alex.vim index cf073cb2..60a9a7c9 100644 --- a/ale_linters/xhtml/alex.vim +++ b/ale_linters/xhtml/alex.vim @@ -4,7 +4,8 @@ call ale#linter#Define('xhtml', { \ 'name': 'alex', \ 'executable': 'alex', -\ 'command': 'alex %t -t', +\ 'command': 'alex %s -t', \ 'output_stream': 'stderr', \ 'callback': 'ale#handlers#alex#Handle', +\ 'lint_file': 1, \}) |