diff options
author | Ian Good <icgood@gmail.com> | 2017-01-03 14:55:23 -0500 |
---|---|---|
committer | Ian Good <icgood@gmail.com> | 2017-01-03 14:55:23 -0500 |
commit | c97ad01bcb724c5f0c112f681aa38ceb9397852c (patch) | |
tree | 4ad40027706851811046eb1a01676afb95f0248b /ale_linters/perl | |
parent | 3e1486fc927d6641ea8d21cc31c5870cb7c75ce7 (diff) | |
download | ale-c97ad01bcb724c5f0c112f681aa38ceb9397852c.zip |
Fix typo in perlcritic linter dictionary
The linter validation logic was checking for `stdout`, `stderr`, or
`both`, resulting in an exception being thrown when loading the
perlcritic linter.
Diffstat (limited to 'ale_linters/perl')
-rw-r--r-- | ale_linters/perl/perlcritic.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/perl/perlcritic.vim b/ale_linters/perl/perlcritic.vim index eae8b14d..d1152bbc 100644 --- a/ale_linters/perl/perlcritic.vim +++ b/ale_linters/perl/perlcritic.vim @@ -35,7 +35,7 @@ endfunction call ale#linter#Define('perl', { \ 'name': 'perlcritic', \ 'executable': 'perlcritic', -\ 'output_stream': 'sdtout', +\ 'output_stream': 'stdout', \ 'command': 'perlcritic --verbose 3 --nocolor', \ 'callback': 'ale_linters#perl#perlcritic#Handle', \}) |