-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenAPI.code-workspace
More file actions
72 lines (72 loc) · 2.01 KB
/
OpenAPI.code-workspace
File metadata and controls
72 lines (72 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"folders": [
{
"name": "API Specifications",
"path": "specs"
},
{
"name": "Data Gateway",
"path": "src/dataGateway"
},
{
"name": "SHIELD",
"path": "src/shield"
},
{
"name": "URL Shortener",
"path": "src/urlShortener"
},
{
"name": "GitHub Actions",
"path": ".github/workflows"
}
],
"settings": {
"files.exclude": {
"node_modules": true
},
"cSpell.enabledFileTypes": {
"*": true
},
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": false,
"typescript.format.semicolons": "insert",
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"typescript.format.insertSpaceAfterTypeAssertion": true,
"typescript.implementationsCodeLens.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single",
"js/ts.implicitProjectConfig.target": "ES2022",
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"search.exclude": {
"**/*.js": true,
"**/*.js.map": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"yaml.format.singleQuote": true,
"powershell.codeFormatting.useConstantStrings": true,
"typescript.tsdk": "node_modules\\typescript\\lib",
"github.copilot.editor.enableAutoCompletions": false,
"cSpell.words": [
"Entra",
"kiota",
"typia"
]
},
"extensions": {
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"gruntfuggly.todo-tree",
"PKief.material-icon-theme",
"SocketSecurity.vscode-socket-security",
"42Crunch.vscode-openapi"
]
}
}