diff --git a/docs/src/docs/product/migration-guide.mdx b/docs/src/docs/product/migration-guide.mdx index 731e3d027621..3cc385461411 100644 --- a/docs/src/docs/product/migration-guide.mdx +++ b/docs/src/docs/product/migration-guide.mdx @@ -2006,3 +2006,31 @@ severity: ### `version` The `version` property has been added to the configuration file. + +### Integration + +#### VSCode + +
+v1 + +```json +"go.lintTool": "golangci-lint", +"go.lintFlags": [ + "--fast" +] +``` + +
+ +
+v2 + +```json +"go.lintTool": "golangci-lint", +"go.lintFlags": [ + "--fast-only" +] +``` + +