Skip to content

Instantly share code, notes, and snippets.

@rob-bar
Created September 25, 2012 14:24
Show Gist options
  • Save rob-bar/3782241 to your computer and use it in GitHub Desktop.
Save rob-bar/3782241 to your computer and use it in GitHub Desktop.
indenting whitelines and zombielines
/* -- BAD -- */
#identifier {
key: value;
#anotheridentifier {
key: value;
}
}
#identifier {
key: value;
#anotheridentifier {
key: value;
}
}
#identifier {
key: value;
#anotheridentifier {
key: value;
}
}
/* -- GOOD -- */
#identifier {
key: value;
#anotheridentifier {
key: value;
}
}
#identifier {
key: value;
#anotheridentifier {
key: value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment