-
Notifications
You must be signed in to change notification settings - Fork 991
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #37427 - Fix some Style/ cop #10080
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 tasks
ekohl
requested changes
Mar 21, 2024
archanaserver
force-pushed
the
style-cop-fix
branch
from
March 21, 2024 17:54
c1f6fea
to
648ad57
Compare
archanaserver
force-pushed
the
style-cop-fix
branch
2 times, most recently
from
March 28, 2024 10:14
5a1c01a
to
be9e2c2
Compare
ekohl
requested changes
Apr 5, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if the test failures are related. Perhaps they're solved if you rebase.
Also, please open Redmine issues.
archanaserver
force-pushed
the
style-cop-fix
branch
from
April 12, 2024 11:08
be9e2c2
to
cf2ac4f
Compare
archanaserver
force-pushed
the
style-cop-fix
branch
from
May 9, 2024 10:24
cf2ac4f
to
d2d0488
Compare
archanaserver
changed the title
Fixes #37426 - Fix some Style/ cop
Fixes #37427 - Fix some Style/ cop
May 9, 2024
archanaserver
force-pushed
the
style-cop-fix
branch
2 times, most recently
from
May 15, 2024 09:39
5eb0c44
to
10b87e3
Compare
Needs also a rebase now. |
archanaserver
force-pushed
the
style-cop-fix
branch
from
June 24, 2024 20:58
10b87e3
to
ef3b93d
Compare
archanaserver
force-pushed
the
style-cop-fix
branch
2 times, most recently
from
August 1, 2024 08:14
7b40dca
to
679ea28
Compare
14 tasks
This cop efficiently detects and fixes unnecessary variable assignments before returning values in methods. Also improves redability of code by reducing clutter. https://docs.rubocop.org/rubocop/cops_style.html#styleredundantassignment
This cop identifies and recommends removing redundant '.rb' file extensions specified in require and require_relative statements. Omitting the extension improves code clarity and adheres to Ruby's behavior. https://docs.rubocop.org/rubocop/cops_style.html#styleredundantfileextensioninrequire
This cop ensures that optional keyword parameters are positioned at the end of the parameters list. This promotes readability by following the common convention of placing required parameters first and optional parameters last. https://docs.rubocop.org/rubocop/cops_style.html#stylekeywordparametersorder
archanaserver
force-pushed
the
style-cop-fix
branch
from
October 17, 2024 07:40
679ea28
to
a24a210
Compare
ehelms
approved these changes
Oct 17, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixed Style/RedundantAssignment & Style/RedundantFileExtensionInRequire cop.
Check commits for more details