We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b3649d commit fd879c0Copy full SHA for fd879c0
.gitignore
@@ -26,7 +26,6 @@
26
*.sublime-workspace
27
nbproject
28
Thumbs.db
29
-/.vscode/
30
# Local Netlify folder
31
.netlify
32
.vscode/extensions.json
@@ -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
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": "explicit",
+ "source.fixAll.stylelint": "always"
+ },
+ "editor.renderWhitespace": "all",
+ "scss.validate": false,
+ "stylelint.enable": true,
+ "stylelint.validate": ["scss"]
0 commit comments