Do you try to make your code look pretty? [closed]
Any code style that makes you reorder things when code changes is bad. It would screw up diffs. You are using a version control system right? There’s a few other things that would make your code prettier, but screw up diffs. Imagine this code: int foo = 42; int fooBar = 1024; Now let’s make … Read more