Skip to content

Commit 7beaa93

Browse files
authored
chore: Restore .vscode config files (#12605)
Randomly removed in #7839 Adjusted paths for Azure/autorest repo reorg
1 parent 4151fbc commit 7beaa93

File tree

3 files changed

+61
-0
lines changed

3 files changed

+61
-0
lines changed

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"EditorConfig.EditorConfig",
4+
"esbenp.prettier-vscode",
5+
"docsmsft.docs-authoring-pack"
6+
]
7+
}

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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": "node",
9+
"request": "launch",
10+
"name": "Mocha Tests",
11+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
12+
"args": [
13+
"--timeout",
14+
"999999",
15+
"--colors",
16+
"${workspaceFolder}/test/syntax.js"
17+
],
18+
"internalConsoleOptions": "openOnSessionStart"
19+
},
20+
{
21+
"type": "node",
22+
"request": "launch",
23+
"name": "Launch Program",
24+
"program": "${file}"
25+
}
26+
]
27+
}

.vscode/settings.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"json.schemas": [
4+
{
5+
"fileMatch": [
6+
"/**/specification/*.json"
7+
],
8+
"url": "https://raw.githubusercontent.com/Azure/autorest/master/packages/libs/autorest-schemas/swagger-extensions.json"
9+
},
10+
{
11+
"fileMatch": [
12+
"/**/examples/*.json"
13+
],
14+
"url": "https://raw.githubusercontent.com/Azure/autorest/master/packages/libs/autorest-schemas/example-schema.json"
15+
},
16+
{
17+
"fileMatch": [
18+
"/**/composite*.json"
19+
],
20+
"url": "https://raw.githubusercontent.com/Azure/autorest/master/packages/libs/autorest-schemas/composite-swagger.json"
21+
}
22+
],
23+
"typescript.tsdk": "node_modules\\typescript\\lib",
24+
"[json]": {
25+
"editor.defaultFormatter": "esbenp.prettier-vscode"
26+
}
27+
}

0 commit comments

Comments
 (0)