Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions docs/src/config/sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
link: "/product/roadmap/"
- label: "Trusted By"
link: "/product/trusted-by/"
- label: "Comparison"
link: "/product/comparison/"
- label: "GitHub"
link: "https://github.com/golangci/golangci-lint"
- label: Contributing
Expand Down
78 changes: 0 additions & 78 deletions docs/src/docs/product/comparison.mdx

This file was deleted.

5 changes: 3 additions & 2 deletions docs/src/docs/usage/performance.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ Less `GOGC` values trigger garbage collection more frequently and golangci-lint
## Why `golangci-lint` is so fast

1. Work sharing
The key difference with gometalinter is that golangci-lint shares work between specific linters (golint, govet, ...).
We don't fork to call specific linter but use its API.

During operation, `golangci-lint` shares work between specific linters (like `golint`, `govet`, etc.).
We don't fork to call a specific linter, but instead use its API.
For small and medium projects 50-90% of work between linters can be reused.

- load `[]*packages.Package` by `go/packages` once
Expand Down