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
if.rb:1:1: C: [Corrected] Favor if over unless for negative conditions.
0 unless !a
^^^^^^^^^^^
if.rb:1:1: C: [Corrected] Favor unless over if for negative conditions.
0 if (!a)
^^^^^^^^^
if.rb:1:6: C: [Corrected] Don't use parentheses around the condition of an if.
0 if (!a)
^^^^
I am running RuboCop 0.21.0
The text was updated successfully, but these errors were encountered:
The code "0 if (!a)" is corrected to "0 if a":
I am running RuboCop 0.21.0
The text was updated successfully, but these errors were encountered: