Skip to content

Commit f0a5c12

Browse files
authored
feat (vscode): add suggested vscode extension and settings configs (#870)
2 parents 1a8cd99 + 68e9943 commit f0a5c12

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ yarn-error.log*
3434

3535
.env
3636
.vercel
37-
.vscode
3837
.env*.local
3938

4039
# Playwright

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["biomejs.biome"]
3+
}

.vscode/settings.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"[javascript]": {
4+
"editor.defaultFormatter": "biomejs.biome"
5+
},
6+
"[typescript]": {
7+
"editor.defaultFormatter": "biomejs.biome"
8+
},
9+
"[typescriptreact]": {
10+
"editor.defaultFormatter": "biomejs.biome"
11+
},
12+
"typescript.tsdk": "node_modules/typescript/lib",
13+
"eslint.workingDirectories": [
14+
{ "pattern": "app/*" },
15+
{ "pattern": "packages/*" }
16+
]
17+
}
18+

0 commit comments

Comments
 (0)