From c97ad01bcb724c5f0c112f681aa38ceb9397852c Mon Sep 17 00:00:00 2001 From: Ian Good Date: Tue, 3 Jan 2017 14:55:23 -0500 Subject: [PATCH] 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. --- ale_linters/perl/perlcritic.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ale_linters/perl/perlcritic.vim b/ale_linters/perl/perlcritic.vim index eae8b14..d1152bb 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', \})