Skip to content

Update Metrics/CollectionLiteralLength to only register for [] when called on Set #13696

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

Merged

Conversation

dvandersluis
Copy link
Member

As per #11584, Metrics/CollectionLiteralLength was only intended to apply to collection literals ([], {} and Set[]), but the cop was too restrictive, so foo[...] would register an offense with more than LengthThreshold elements.


Before submitting the PR make sure the following are checked:

  • The PR relates to only one subject with a clear title and description in grammatically correct, complete sentences.
  • Wrote good commit messages.
  • Commit message starts with [Fix #issue-number] (if the related issue exists).
  • Feature branch is up-to-date with master (if not - rebase it).
  • Squashed related commits together.
  • Added tests.
  • Ran bundle exec rake default. It executes all tests and runs RuboCop on its own code.
  • Added an entry (file) to the changelog folder named {change_type}_{change_description}.md if the new code introduces user-observable changes. See changelog entry format for details.

Comment on lines 55 to 56
# @!method set?(node)
def_node_matcher :set?, <<~PATTERN
Copy link
Member

@koic koic Jan 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's my two cents. Can you rename to the following?

Suggested change
# @!method set?(node)
def_node_matcher :set?, <<~PATTERN
# @!method set_const?(node)
def_node_matcher :set_const?, <<~PATTERN

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure thing, updated.

def on_array(node)
add_offense(node) if node.children.length >= collection_threshold
end
alias on_hash on_array

def on_index(node)
return unless set?(node.receiver)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return unless set?(node.receiver)
return unless set_const?(node.receiver)

@dvandersluis dvandersluis force-pushed the restrict-collection-literal-length branch from 8395419 to 58e2299 Compare January 14, 2025 16:06
@koic koic merged commit b83fdc5 into rubocop:master Jan 14, 2025
23 checks passed
@koic
Copy link
Member

koic commented Jan 14, 2025

Thanks!

@dvandersluis dvandersluis deleted the restrict-collection-literal-length branch January 14, 2025 16:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy