From 65b987b1101bf5896066ca9c7ab7fddb045f4211 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Mon, 18 Nov 2024 12:41:50 +0200 Subject: [PATCH 1/2] docs: ineffassign instead of golint on 'performance' page --- docs/src/docs/product/performance.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/product/performance.mdx b/docs/src/docs/product/performance.mdx index 28b890349b8f..989de894f96c 100644 --- a/docs/src/docs/product/performance.mdx +++ b/docs/src/docs/product/performance.mdx @@ -22,7 +22,7 @@ Less `GOGC` values trigger garbage collection more frequently and golangci-lint 1. Work sharing - During operation, `golangci-lint` shares work between specific linters (like `golint`, `govet`, etc.). + During operation, `golangci-lint` shares work between specific linters (like `govet`, `ineffasign`, 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. From f831f025807f8d74640ccdccdeecc1c4a031e532 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Mon, 18 Nov 2024 14:10:55 +0100 Subject: [PATCH 2/2] review: typo --- docs/src/docs/product/performance.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/docs/product/performance.mdx b/docs/src/docs/product/performance.mdx index 989de894f96c..4863361129ec 100644 --- a/docs/src/docs/product/performance.mdx +++ b/docs/src/docs/product/performance.mdx @@ -22,7 +22,7 @@ Less `GOGC` values trigger garbage collection more frequently and golangci-lint 1. Work sharing - During operation, `golangci-lint` shares work between specific linters (like `govet`, `ineffasign`, etc.). + During operation, `golangci-lint` shares work between specific linters (like `govet`, `ineffassign`, 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.