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

No commas for coding style #10

Open
twolfson opened this issue Nov 22, 2013 · 1 comment
Open

No commas for coding style #10

twolfson opened this issue Nov 22, 2013 · 1 comment

Comments

@twolfson
Copy link

There is a third option for the comma choice in coding style:

  • var for each variable
var abc = 'def';
var ghi = 'jkl';
  • Comma-first; comma before each variable
var abc = 'def'
  , ghi = 'jkl';
  • Comma-last; comma after each variable
var abc = 'def',
    ghi = 'jkl';
@twolfson
Copy link
Author

Let me know and I will open up a PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant