Fighting over syntax formatting in code review is, mostly, waste of time. Having consistent formatting is great for readability, but code review is not the right place to enforce it. To keep code reviews fast and smooth, you’ll want to focus on high-impact issues. With formatting, the returns diminish quickly. Instead, you should use computers to enforce consistent formatting. There are two ways to go about it: Use a code formatter tool. Try to find a fast one and configure everybody’s ed...