diff options
author | Horacio Sanson <hsanson@gmail.com> | 2021-02-23 16:48:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 16:48:42 +0900 |
commit | 76965615558e9398ef4cc79991632a7b68a6c7bc (patch) | |
tree | 68e84130f71bda1823b3223df3b5f35b129775b6 /ale_linters/ruby | |
parent | 90b9597d500c528d46aa13ccfa678a86ef7ea22b (diff) | |
download | ale-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')
-rw-r--r-- | ale_linters/ruby/ruby.vim | 2 |
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', \}) |