Giter Site home page Giter Site logo

Comments (7)

robotpistol avatar robotpistol commented on June 10, 2024 2

One thing to keep in mind is that in method definitions, a trailing comma is invalid ruby syntax.

Overall I don't have a strong preference on the trailing comma in method calls though.

from ruby.

ljharb avatar ljharb commented on June 10, 2024 2

Prior to trailing function commas being valid JS, the JS style guide's approach was simply "everywhere a trailing comma is allowed, where adding it keeps diffs small - use one" - using the same rationale here would cover invalid syntax.

from ruby.

BMorearty avatar BMorearty commented on June 10, 2024 2

Using a trailing comma without parentheses has to be forbidden, though. It will (and has) cause errors.

from ruby.

ljharb avatar ljharb commented on June 10, 2024 1

I think the rationale that should apply is, when adding a new "last" item to a list (where the current last item can have an optional trailing comma), use whichever form results in the smallest git diff.

In @romanfuchs' examples, the former would not need one; the latter would.

If this rationale makes sense to others, then I think that we should mandate it.

from ruby.

robotpistol avatar robotpistol commented on June 10, 2024

We currently don't have a rule for trailing commas in multi-line-method calls.

# good
return I18n.t('Guest Profile Page: A note for the Host saying the potential Guest has '\
                'not cancelled a reservation since joining Airbnb.',
              :default => '%{guest_name} hasn’t canceled a reservation since joining '\
                          'Airbnb',
              :guest_name => @user.smart_name)

# bad
return I18n.t('Guest Profile Page: A note for the Host saying the potential Guest has '\
                'not cancelled a reservation since joining Airbnb.',
              :default => '%{guest_name} hasn’t canceled a reservation since joining '\
                          'Airbnb',
              :guest_name => @user.smart_name,
)

# good 
return I18n.t(
  'Guest Profile Page: A note for the Host saying the potential Guest has '\
    'not cancelled a reservation since joining Airbnb.',
  :default => '%{guest_name} hasn’t canceled a reservation since joining '\
              'Airbnb',
  :guest_name => @user.smart_name,
)

# Also good
return I18n.t(
  'Guest Profile Page: A note for the Host saying the potential Guest has '\
    'not cancelled a reservation since joining Airbnb.',
  :default => '%{guest_name} hasn’t canceled a reservation since joining '\
              'Airbnb',
  :guest_name => @user.smart_name
)

from ruby.

romanfuchs avatar romanfuchs commented on June 10, 2024

Regarding the first argument, I think it's fine to not enforce one style here. It depends, e.g.

foo(argument1,
    argument2)

looks totally fine, but if it's more like

really_long_name_including_multiple_namespaces(
  argument1,
  argument2
)

then that form is probably better.

from ruby.

alanhamlett avatar alanhamlett commented on June 10, 2024

I like the smallest diff rule, and personally prefer 1 and 3 over the other examples.

from ruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.