chore: vscode files (#2844)

* Added vscode recommendations

* Updated launch command

* Removed extra extensions

* updated root extensions
This commit is contained in:
Juan Martín Seery 2022-03-22 00:16:04 -03:00 committed by GitHub
parent 96372e6beb
commit 95a3e09e81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 96 additions and 2 deletions

4
.gitignore vendored
View file

@ -10,8 +10,8 @@ scripts/memory/project/src/pages/
package-lock.json
.turbo/
# .vscode files other than at top-level
**/.vscode
# ignore top-level vscode settings
/.vscode/settings.json
# do not commit .env files or any files that end with `.env`
*.env

9
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,9 @@
{
"recommendations": [
"astro-build.astro-vscode",
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint"
],
"unwantedRecommendations": []
}

6
examples/blog/.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}

11
examples/blog/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

6
examples/docs/.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}

11
examples/docs/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

View file

@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}

11
examples/minimal/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

View file

@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}

11
examples/portfolio/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

View file

@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}

11
examples/starter/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}