Skip to content

Commit fd879c0

Browse files
authored
Add VSCode Extensions & Settings Configs (#41498)
Fixes: #41496
1 parent 6b3649d commit fd879c0

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
*.sublime-workspace
2727
nbproject
2828
Thumbs.db
29-
/.vscode/
3029
# Local Netlify folder
3130
.netlify
3231

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"astro-build.astro-vscode",
4+
"dbaeumer.vscode-eslint",
5+
"EditorConfig.EditorConfig",
6+
"hossaini.bootstrap-intellisense",
7+
"streetsidesoftware.code-spell-checker",
8+
"stylelint.vscode-stylelint"
9+
]
10+
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll.eslint": "explicit",
4+
"source.fixAll.stylelint": "always"
5+
},
6+
"editor.renderWhitespace": "all",
7+
"scss.validate": false,
8+
"stylelint.enable": true,
9+
"stylelint.validate": ["scss"]
10+
}

0 commit comments

Comments
 (0)