You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we pull in whatever the latest version of parser/current is... if that is ahead of our actual Ruby version, then we can get warnings, which we currently silence:
I originally thought we were only hitting this warning due to Rubocop,
and tried removing it, but it turns out we pull in this library for
other code. I don't have time to dig deeper right now, so I filed
dependabot#5461 explaining
what I learned so far and this PR adds a TODO note in the code so the
information doesn't get lost in the issue tracker.
Currently, we pull in whatever the latest version of
parser/current
is... if that is ahead of our actual Ruby version, then we can get warnings, which we currently silence:dependabot-core/common/spec/warning_monkey_patch.rb
Lines 4 to 9 in 18bb480
However, there's another way to handle this--by having the parser version match whatever version of Ruby we're using.
See how the Rubocop project did it:
$VERSOSE = nil
: marcandre/rubocop-ast@7081f7cThe text was updated successfully, but these errors were encountered: