chore: remove vscode from gitignore

This commit is contained in:
2026-03-10 20:50:30 +08:00
parent b9c0f3025c
commit 21890ac5eb
5 changed files with 37 additions and 1 deletions

1
.gitignore vendored
View File

@@ -15,7 +15,6 @@ build/
.env.*.local .env.*.local
# IDE # IDE
.vscode/
.idea/ .idea/
*.swp *.swp
*.swo *.swo

5
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"recommendations": [
"oxc.oxc-vscode"
]
}

11
.vscode/mcp.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"servers": {
"heroui-react": {
"command": "npx",
"args": [
"-y",
"@heroui/react-mcp@latest"
]
}
}
}

11
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,11 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.oxc": "always"
},
"oxc.fmt.configPath": ".oxfmtrc.json",
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": true,
"[typescriptreact]": {
"editor.defaultFormatter": "oxc.oxc-vscode"
}
}

View File

@@ -0,0 +1,10 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}