Skip to content
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

Layout/SpaceAroundEqualsInParameterDefault-20230315233256 #846

Merged
merged 4 commits into from
Mar 20, 2023

Conversation

github-actions[bot]
Copy link
Contributor

Rubocop challenge!

Layout/SpaceAroundEqualsInParameterDefault

Safe autocorrect: Yes
✅ The autocorrect a cop does is safe (equivalent) by design.

Description

Overview

Checks that the equals signs in parameter default assignments
have or don't have surrounding space depending on configuration.

Examples

EnforcedStyle: space (default)

# bad
def some_method(arg1=:default, arg2=nil, arg3=[])
  # do something...
end

# good
def some_method(arg1 = :default, arg2 = nil, arg3 = [])
  # do something...
end

EnforcedStyle: no_space

# bad
def some_method(arg1 = :default, arg2 = nil, arg3 = [])
  # do something...
end

# good
def some_method(arg1=:default, arg2=nil, arg3=[])
  # do something...
end

Auto generated by rubocop_challenger

@mathieujobin mathieujobin merged commit e273d55 into master Mar 20, 2023
@mathieujobin mathieujobin deleted the rubocop-challenge/20230315233256 branch March 20, 2023 05:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant