Skip to content

Instantly share code, notes, and snippets.

@cowboy
Last active October 22, 2015 14:34
Show Gist options
  • Save cowboy/e808222c7b461202cb82 to your computer and use it in GitHub Desktop.
Save cowboy/e808222c7b461202cb82 to your computer and use it in GitHub Desktop.
While I like eslint's comma-dangle set to always-multiline
var noTrailingComma = {
example: 123,
test: 456,
sweet: 'thing',
yay: 'omg',
newthing: true
};
var trailingComma = {
example: 123,
test: 456,
sweet: 'thing',
yay: 'omg',
newthing: true,
};
@cowboy
Copy link
Author

cowboy commented Oct 22, 2015

See the first revision's diff.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment