chore: add recommended VS Code settings

This commit is contained in:
Isaac
2025-03-25 21:26:31 +00:00
parent 5cb1f9b4ec
commit 0b7ff774d4
3 changed files with 21 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,5 @@
# directories
/.history/
/.vscode/
/node_modules/
/prisma/
/user/

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

@@ -0,0 +1,13 @@
{
// 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": [
"dbaeumer.vscode-eslint"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
]
}

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

@@ -0,0 +1,8 @@
{
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
}