Skip to content

Commit

Permalink
chore: vscode files (#2844)
Browse files Browse the repository at this point in the history
* Added vscode recommendations

* Updated launch command

* Removed extra extensions

* updated root extensions
  • Loading branch information
JuanM04 authored Mar 22, 2022
1 parent 96372e6 commit 95a3e09
Show file tree
Hide file tree
Showing 12 changed files with 96 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"astro-build.astro-vscode",
"esbenp.prettier-vscode",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint"
],
"unwantedRecommendations": []
}
6 changes: 6 additions & 0 deletions examples/blog/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/blog/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
6 changes: 6 additions & 0 deletions examples/docs/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/docs/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
6 changes: 6 additions & 0 deletions examples/minimal/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/minimal/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
6 changes: 6 additions & 0 deletions examples/portfolio/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/portfolio/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
6 changes: 6 additions & 0 deletions examples/starter/.vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"astro-build.astro-vscode"
],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions examples/starter/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

0 comments on commit 95a3e09

Please sign in to comment.