-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
NinjaOne.code-workspace
65 lines (65 loc) · 2.16 KB
/
NinjaOne.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"editor.autoIndent": "full",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modificationsIfAvailable",
"azure-pipelines.customSchemaFile": ".\\DevOps\\azurepipelines.schema.json",
"powershell.pester.useLegacyCodeLens": false,
"powershell.codeFormatting.preset": "OTBS",
"powershell.codeFormatting.useConstantStrings": true,
"powershell.codeFormatting.alignPropertyValuePairs": false,
"powershell.codeFormatting.addWhitespaceAroundPipe": true,
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.ignoreOneLineBlock": true,
"powershell.codeFormatting.newLineAfterCloseBrace": true,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.trimWhitespaceAroundPipe": false,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.codeFormatting.whitespaceBetweenParameters": false,
"powershell.codeFormatting.whitespaceInsideBrace": true,
"cSpell.words": [
"hashtable",
"homotechsual",
"Homotechsual",
"organisation",
"Organisation",
"pluralised",
"Whitelock"
],
"intelephense.format.braces": "k&r"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "PowerShell Attach to Host Process",
"type": "PowerShell",
"request": "attach",
"runspaceId": 1
},
{
"name": "PowerShell Attach Interactive Session Runspace",
"type": "PowerShell",
"request": "attach"
},
{
"name": "PowerShell: Launch Current File",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"cwd": "${file}"
}
]
}
}