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:
parent
3e1486fc92
commit
c97ad01bcb
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
\})
|
||||
|
|
Reference in a new issue