Skip to content

Commit fbf885f

Browse files
authored
docs: vscode integration (#41)
1 parent edc99e6 commit fbf885f

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

docs/.vitepress/config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ const COMMANDS: DefaultTheme.NavItemWithLink[] = commands.map(file => ({
2121
link: `/commands/${file.split('/').pop()!.replace('.md', '')}`,
2222
}))
2323

24+
const INTEGRATIONS: DefaultTheme.NavItemWithLink[] = [
25+
{ text: 'VS Code Extension', link: '/integrations/vscode' },
26+
]
27+
2428
const VERSIONS: (DefaultTheme.NavItemWithLink | DefaultTheme.NavItemChildren)[] = [
2529
{ text: `v${version} (current)`, link: '/' },
2630
{ text: `Release Notes`, link: 'https://github.com/antfu/eslint-plugin-command/releases' },
@@ -66,6 +70,10 @@ export default defineConfig({
6670
text: 'Commands',
6771
items: COMMANDS,
6872
},
73+
{
74+
text: 'Integrations',
75+
items: INTEGRATIONS,
76+
},
6977
{
7078
text: `v${version}`,
7179
items: VERSIONS,
@@ -84,6 +92,10 @@ export default defineConfig({
8492
text: 'Commands',
8593
items: COMMANDS,
8694
},
95+
{
96+
text: 'Integrations',
97+
items: INTEGRATIONS,
98+
},
8799
],
88100
},
89101
),

docs/integrations/vscode.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# VS Code Extension
2+
3+
A community plugin that provides support in VS Code.
4+
5+
> [!INFO]
6+
> This is a community-maintained plugin. Please do your own research before using. If you have any issues with this plugin, please report it to [kvoon3/vscode-eslint-codemod](https://github.com/kvoon3/vscode-eslint-codemod).
7+
8+
## Installation
9+
10+
[Install in Marketplace](https://marketplace.visualstudio.com/items?itemName=kvoon.vscode-eslint-codemod)
11+
12+
## Features
13+
14+
- Autocomplete
15+
- Auto fix
16+
- Preview code changes
17+
- In-editor documentation

0 commit comments

Comments
 (0)