File tree Expand file tree Collapse file tree 3 files changed +61
-0
lines changed
Expand file tree Collapse file tree 3 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " EditorConfig.EditorConfig" ,
4+ " esbenp.prettier-vscode" ,
5+ " docsmsft.docs-authoring-pack"
6+ ]
7+ }
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments