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
The Style/AutoResourceCleanup cop should not flag the following (touch + chmod):
File.open('file','w',0o777).close
Expected behavior
Given a file with the content above, rubocop --only Style/AutoResourceCleanup should output:
Inspecting 1 file
.
1 file inspected, no offenses detected
Actual behavior
Given a file with the content above, rubocop --only Style/AutoResourceCleanup outputs:
Inspecting 1 file
C
Offenses:
open.rb:1:1: C: Use the block version of File.open.
File.open(file, 'w', 0o100777).close
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1 file inspected, 1 offense detected
The
Style/AutoResourceCleanup
cop should not flag the following (touch
+chmod
):Expected behavior
Given a file with the content above,
rubocop --only Style/AutoResourceCleanup
should output:Actual behavior
Given a file with the content above,
rubocop --only Style/AutoResourceCleanup
outputs:RuboCop version
The text was updated successfully, but these errors were encountered: