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.
This commit is contained in:
Ian Good 2017-01-03 14:55:23 -05:00
parent 3e1486fc92
commit c97ad01bcb
1 changed files with 1 additions and 1 deletions

View File

@ -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',
\})