| ▲ | theshrike79 4 days ago |
| In mine. It's Just Fine. Is it the best or most robust or can you do fancy shit with it? No But it works well enough to release reliable software along with the massive linter framework that's built on top of Go. |
|
| ▲ | diarrhea 3 days ago | parent [-] |
| > massive linter framework I wonder why that ended up being necessary... ;) |
| |
| ▲ | theshrike79 2 days ago | parent [-] | | All languages have linters, Go just has a proper ecosystem of them due to the way the language is built. | | |
| ▲ | diarrhea 2 days ago | parent [-] | | $ golangci-lint linters | wc -l
107
That is a long list of linters (only a few enabled by default however). I much prefer less fragmented approaches such as clippy or ruff. It makes for a more coherent experience and surely much higher performance (1x AST parsing instead of dozens of times). |
|
|