feat (vscode): add suggested vscode extension and settings configs (#870)

This commit is contained in:
Walter Korman 2025-03-18 15:59:11 -07:00 committed by GitHub
commit f0a5c12dfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 21 additions and 1 deletions

1
.gitignore vendored
View file

@ -34,7 +34,6 @@ yarn-error.log*
.env .env
.vercel .vercel
.vscode
.env*.local .env*.local
# Playwright # Playwright

3
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"recommendations": ["biomejs.biome"]
}

18
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"editor.formatOnSave": true,
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
},
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.workingDirectories": [
{ "pattern": "app/*" },
{ "pattern": "packages/*" }
]
}