summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorAndrew Hayworth <ahayworth@gmail.com>2021-10-22 00:20:00 -0500
committerGitHub <noreply@github.com>2021-10-22 14:20:00 +0900
commit95ba7898b45c3cbac77463aace447ead4e173556 (patch)
treefcd8917c2059fb9a382d98eef1031258a7b21d8b /ale_linters
parent9b5a3581ebb7e6e1ccb0cbaeef5358aee57d734e (diff)
downloadale-95ba7898b45c3cbac77463aace447ead4e173556.zip
Re-apply #3538 - remove -T argument from ruby linter (#3951)
The `-T` option (for "taint checking") was deprecated in ruby 2.7 and removed entirely in ruby 3.0. This causes the linter to fail entirely for users of ruby 3.0. This was reported in #3537, and then fixed in #3538 - but it seems as though in 9fe7b1fe6a23fb55e6d782293585d58193123f59, it was accidentally and entirely undone. This commit is essentially identical to #3538, aside from a path change for the tests.
Diffstat (limited to 'ale_linters')
-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',
\})