feat (vscode): add suggested vscode extension and settings configs
This commit is contained in:
parent
90e1c8368e
commit
68e9943ab3
3 changed files with 21 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -34,7 +34,6 @@ yarn-error.log*
|
|||
|
||||
.env
|
||||
.vercel
|
||||
.vscode
|
||||
.env*.local
|
||||
|
||||
# Playwright
|
||||
|
|
|
|||
3
.vscode/extensions.json
vendored
Normal file
3
.vscode/extensions.json
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"recommendations": ["biomejs.biome"]
|
||||
}
|
||||
18
.vscode/settings.json
vendored
Normal file
18
.vscode/settings.json
vendored
Normal 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/*" }
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue