|
|
|
|
|
by o11c
236 days ago
|
|
There are 3 major problems with automated code formatters: * Handling of multiple newlines to break sections, or none to group related functions (e.g. a getter with a setter). Sometimes it's even best to move functions around for better grouping. * They don't factor out an expression into a separate variable. * They destroy `git blame`. This one is avoided if the tooling has always enforced formatting. |
|