|
|
|
|
|
by kubanczyk
1371 days ago
|
|
> No linters. Code is auto-formatted. Naming: linters deal with much more than formatting, and users tend to create linters even for languages which enforce canonical formatting. Linters check for the patterns which are allowed by the compiler, but disallowed by a particular project/team/org. Example: disallow functions longer than four statements, disallow repeated strings that could be replaced by a constant, etc. |
|