Recommend the ESLint extension to VSCode users

This commit is contained in:
valadaptive 2023-12-10 21:39:02 -05:00
parent 23e6a10cb5
commit f1cd7e89db
2 changed files with 15 additions and 1 deletions

3
.gitignore vendored
View File

@ -27,7 +27,8 @@ public/stats.json
public/settings.json
/thumbnails
whitelist.txt
.vscode
.vscode/**
!.vscode/extensions.json
.idea/
secrets.json
/dist

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": [
]
}