Skip to content

Commit 8615c77

Browse files
committed
[repo] Include vscode workspace config
This workspace configuration includes recommendations for the following extensions: - davidanson.vscode-markdownlint - Markdown Linting - streetsidesoftware.code-spell-checker = Official cspell integration - dbaeumer.vscode-eslint - Official Microsoft eslint integration - tberman.json-schema-validator - JSON Schema validation - silvenon.mdx - MDX syntax highlighter - gamunu.vscode-yarn - Yarn integration
1 parent b30477b commit 8615c77

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

.vscode/extensions.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
// List of extensions which should be recommended for users of this workspace.
5+
"recommendations": [
6+
"davidanson.vscode-markdownlint",
7+
"streetsidesoftware.code-spell-checker",
8+
"dbaeumer.vscode-eslint",
9+
"tberman.json-schema-validator",
10+
"silvenon.mdx",
11+
"gamunu.vscode-yarn"
12+
],
13+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
14+
"unwantedRecommendations": []
15+
}

.vscode/launch.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "pwa-node",
9+
"request": "launch",
10+
"name": "Launch Program",
11+
"skipFiles": [
12+
"<node_internals>/**"
13+
],
14+
"program": "${file}"
15+
}
16+
]
17+
}

.vscode/settings.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"markdownlint.customRules": [
3+
]
4+
}

0 commit comments

Comments
 (0)