Skip to content

Commit

Permalink
vscode extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
livingflore committed Nov 28, 2024
1 parent 276e580 commit 654cb51
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"bradlc.vscode-tailwindcss",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"nidu.copy-json-path",
"Prisma.prisma",
"YoavBls.pretty-ts-errors",
"mikestead.dotenv",
"orepor.color-tabs-vscode-ext"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
20 changes: 19 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,23 @@
"typescript.tsdk": "node_modules/typescript/lib",
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
}
},
"colorTabs.config": [
{
"regex": "apps/bot\\.*",
"color": "#ea580c",
"label": "Bot"
},
{
"regex": "apps/website\\.*",
"color": "#0C0A09",
"label": "Website"
},
{
"regex": "packages\\.*",
"color": "#28B9FF",
"label": "Packages"
}
],
"colorTabs.titleLabel": true
}

0 comments on commit 654cb51

Please sign in to comment.