rubocop / rubocop/ruby-style-guide

Multi-line parameters(arguments) with multiline paraemetrs

Open
#497 5 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
No language data
Stars
16.5k
Forks
3.3k
PR merge metrics
No merged PRs in 30d

Description

I can't find answer to this.

What is considered better style:
Solution 1(Close parentheses on new line):

  def initialize(arg1,
                 arg2,
                 arg3 = Whatever.new,
                 arg4 = Whatever2.new(arg2_1,
                                            arg2_2,
                                            arg2_3
                 )
  )

, or Solution 2 (Racket style):

  def initialize(arg1,
                 arg2,
                 arg3 = Whatever.new,
                 arg4 = Whatever2.new(arg2_1,
                                            arg2_2,
                                            arg2_3))

, or maybe Solution 3(Mixed):

  def initialize(arg1,
                 arg2,
                 arg3 = Whatever.new,
                 arg4 = Whatever2.new(arg2_1,
                                            arg2_2,
                                            arg2_3)
)

IMHO Solution 3

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

No file, test, or entry point is named. Read the existing comment thread and surrounding Ruby style-guide guidance to determine whether the three multiline-parameter styles should be documented; the work is done when the project reaches a clear consensus and records the chosen convention.

Written by the indexing model from the issue text.

Assessment

Tech stack
ruby
Domain
documentation
Issue type
Documentation
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
20/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.