Closed
Description
My CI failed with a RuboCop violation. So locally I ran:
❯ bundle exec rake rubocop_gradual:autocorrect
Running RuboCop Gradual...
Inspecting 181 file(s) for autocorrection...
.....................................................................................................................................................................................
Fixed 0 file(s).
.......................................................................................................................................................................................................................................................................................................................................................................................................................................................
Found 258 files with 5513 issue(s).
Processing results...
RuboCop Gradual got no changes.
noglob bundle exec rake rubocop_gradual:autocorrect 53.01s user 8.48s system 228% cpu 26.863 total
This is a surprising and invalid result, since I saw the result of running rubocop on CI (which runs check
).
Instead of saying it "got no changes" it should have reported the new failures we are about to see below...
So I ran force_update
:
❯ bundle exec rake rubocop_gradual:force_update
Running RuboCop Gradual...
.......................................................................................................................................................................................................................................................................................................................................................................................................................................................
Found 258 files with 5515 issue(s).
Processing results...
Uh oh, RuboCop Gradual got worse:
-> spec/channels/modified_relays_channel_spec.rb (1 new issues)
(line 7) "Betterment/UnscopedFind: Records are being retrieved directly using user input.
Please query for the associated record in a way that enforces authorization (e.g. "trust-root chaining").
INSTEAD OF THIS:
Post.find(params[:post_id])
DO THIS:
current_user.posts.find(params[:post_id])
See here for more information on this error:
https://github.com/Betterment/betterlint/blob/main/README.md#bettermentunscopedfind
(https://github.com/Betterment/betterlint#bettermentunscopedfind)"
-> spec/channels/sensor_streams_channel_spec.rb (1 new issues)
(line 7) "Betterment/UnscopedFind: Records are being retrieved directly using user input.
Please query for the associated record in a way that enforces authorization (e.g. "trust-root chaining").
INSTEAD OF THIS:
Post.find(params[:post_id])
DO THIS:
current_user.posts.find(params[:post_id])
See here for more information on this error:
https://github.com/Betterment/betterlint/blob/main/README.md#bettermentunscopedfind
(https://github.com/Betterment/betterlint#bettermentunscopedfind)"
Force updating lock file...
noglob bundle exec rake rubocop_gradual:force_update 20.56s user 4.62s system 226% cpu 11.099 total
The force_update
caught the change somehow, when the autocorrect
did not.
Metadata
Metadata
Assignees
Labels
No labels