Skip to content

Instantly share code, notes, and snippets.

@seeruk
Created October 8, 2014 21:30
Show Gist options
  • Save seeruk/18757b015a684bef07f8 to your computer and use it in GitHub Desktop.
Save seeruk/18757b015a684bef07f8 to your computer and use it in GitHub Desktop.
/**
* Indentation! Fun for the masses!
*/
// Examples indented for the lines!
// Initial:
object.
method1(
"param1",
"param2"
).
method2();
var variable1,
variable2;
return object.method(
// Do something
);
// Proposed:
object.
method1(
"param1",
"param2"
).
method2();
var variable1,
variable2;
return object.method(
// Do something
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment