splinter-build / splinter

A series of patches (one per branch) on top of the Ninja project's codebase. Updated periodically.
Apache License 2.0
6 stars 1 forks source link

No un-braced if statement in the entire codebase! #4

Open shahzadlone opened 5 years ago

shahzadlone commented 5 years ago

Possibly will make a vim macro to automate this.

prefer:

if (...) {
    ...
}

over:

if (...)
    ...