Skip to content

Commit 92bcb9a

Browse files
authored
docs: add a migration guide for VSCode integration (#5587)
1 parent c7be4fb commit 92bcb9a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

docs/src/docs/product/migration-guide.mdx

+28
Original file line numberDiff line numberDiff line change
@@ -2006,3 +2006,31 @@ severity:
20062006
### `version`
20072007

20082008
The `version` property has been added to the configuration file.
2009+
2010+
### Integration
2011+
2012+
#### VSCode
2013+
2014+
<details>
2015+
<summary>v1</summary>
2016+
2017+
```json
2018+
"go.lintTool": "golangci-lint",
2019+
"go.lintFlags": [
2020+
"--fast"
2021+
]
2022+
```
2023+
2024+
</details>
2025+
2026+
<details>
2027+
<summary>v2</summary>
2028+
2029+
```json
2030+
"go.lintTool": "golangci-lint",
2031+
"go.lintFlags": [
2032+
"--fast-only"
2033+
]
2034+
```
2035+
2036+
</details>

0 commit comments

Comments
 (0)