Skip to content

Instantly share code, notes, and snippets.

@meganemura
Created February 13, 2016 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meganemura/05665b14a47724e17ab7 to your computer and use it in GitHub Desktop.
Save meganemura/05665b14a47724e17ab7 to your computer and use it in GitHub Desktop.
# encoding: utf-8
# frozen_string_literal: true
# good
a = [
1,
]
# good
b = [
1, 2
]
# bad
c = [
1, 2,
]
puts a, b, c
# good
format(
1,
)
# good
format(
1, 2
)
# bad
format(
1, 2,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment