From 3f320d02de084470e8573c08f2da59850df6de35 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Mon, 18 Apr 2016 22:49:53 +0300 Subject: [PATCH] Checker scalastyle: fix command line. --- plugin/syntastic.vim | 2 +- syntax_checkers/scala/scalastyle.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 3f09b818..eab415cd 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.7.0-124' +let g:_SYNTASTIC_VERSION = '3.7.0-125' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/syntax_checkers/scala/scalastyle.vim b/syntax_checkers/scala/scalastyle.vim index 1df96c00..60d2163d 100644 --- a/syntax_checkers/scala/scalastyle.vim +++ b/syntax_checkers/scala/scalastyle.vim @@ -43,7 +43,7 @@ function! SyntaxCheckers_scala_scalastyle_GetLocList() dict let makeprg = self.makeprgBuild({ \ 'exe_after': ['-jar', expand(g:syntastic_scala_scalastyle_jar, 1)], - \ 'args_before': ['-q', 'true', '-c', expand(g:syntastic_scala_scalastyle_config_file, 1)] }) + \ 'args_before': ['-c', expand(g:syntastic_scala_scalastyle_config_file, 1)] }) let errorformat = \ '%trror file=%f message=%m line=%l column=%c,' .