-
Notifications
You must be signed in to change notification settings - Fork 903
Open
Description
I prefer to move logic constructions in separated lines:
if (a) {
// ...
}
else if (a != b) {
// ...
}
else {
// ...
}This makes code more git friendly (like trailing commas). And also it makes it simple to comment else if and else sections. Each block is prepended with it's own condition.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels