-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathObjectID-Converter.code-workspace
More file actions
84 lines (84 loc) · 2.73 KB
/
ObjectID-Converter.code-workspace
File metadata and controls
84 lines (84 loc) · 2.73 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
73
74
75
76
77
78
79
80
81
82
83
84
{
"folders": [
{
"name": "Object ID Converter",
"path": "."
}
],
"settings": {
"window.border": "purple",
"files.exclude": {
"node_modules": true
},
"cSpell.words": [
"camelcase",
"keyvault",
"endregion",
"Entra",
"fluentui",
"Intune",
"MDVM",
"ODATA",
"reduxjs",
"SCIM",
"SSPR",
"Writeback"
],
"cSpell.enabledFileTypes": {
"*": true,
},
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"editor.stickyScroll.enabled": true,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"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",
"eslint.rules.customizations": [
{
"rule": "*",
"severity": "warn"
}
],
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]",
"* @todo"
]
},
"extensions": {
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"gruntfuggly.todo-tree",
"PKief.material-icon-theme",
"SocketSecurity.vscode-socket-security",
"MS-CST-E.vscode-devskim"
]
}
}