summaryrefslogtreecommitdiff
path: root/ale_linters/ruby/ruby.vim
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2021-02-23 16:48:42 +0900
committerGitHub <noreply@github.com>2021-02-23 16:48:42 +0900
commit76965615558e9398ef4cc79991632a7b68a6c7bc (patch)
tree68e84130f71bda1823b3223df3b5f35b129775b6 /ale_linters/ruby/ruby.vim
parent90b9597d500c528d46aa13ccfa678a86ef7ea22b (diff)
downloadale-76965615558e9398ef4cc79991632a7b68a6c7bc.zip
Fix 3537 - remove -T argument from ruby linter (#3538)
Co-authored-by: Horacio Sanson <horacio@allm.inc>
Diffstat (limited to 'ale_linters/ruby/ruby.vim')
-rw-r--r--ale_linters/ruby/ruby.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/ruby/ruby.vim b/ale_linters/ruby/ruby.vim
index 2dc55eb0..621fcbc0 100644
--- a/ale_linters/ruby/ruby.vim
+++ b/ale_linters/ruby/ruby.vim
@@ -6,7 +6,7 @@ call ale#Set('ruby_ruby_executable', 'ruby')
call ale#linter#Define('ruby', {
\ 'name': 'ruby',
\ 'executable': {b -> ale#Var(b, 'ruby_ruby_executable')},
-\ 'command': '%e -w -c -T1 %t',
+\ 'command': '%e -w -c %t',
\ 'output_stream': 'stderr',
\ 'callback': 'ale#handlers#ruby#HandleSyntaxErrors',
\})