|
7 | 7 | "powershell.codeFormatting.whitespaceAroundOperator": true, |
8 | 8 | "powershell.codeFormatting.whitespaceAfterSeparator": true, |
9 | 9 | "powershell.codeFormatting.ignoreOneLineBlock": false, |
10 | | - "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationAfterEveryPipeline", |
| 10 | + "powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline", |
11 | 11 | "powershell.codeFormatting.preset": "Custom", |
12 | 12 | "powershell.codeFormatting.alignPropertyValuePairs": true, |
13 | | - "files.trimTrailingWhitespace": true, |
14 | | - "files.insertFinalNewline": true, |
| 13 | + "powershell.codeFormatting.useConstantStrings": true, |
| 14 | + "powershell.developer.bundledModulesPath": "${cwd}/output/RequiredModules", |
15 | 15 | "powershell.scriptAnalysis.settingsPath": ".vscode\\analyzersettings.psd1", |
16 | 16 | "powershell.scriptAnalysis.enable": true, |
| 17 | + "files.trimTrailingWhitespace": true, |
| 18 | + "files.trimFinalNewlines": true, |
| 19 | + "files.insertFinalNewline": true, |
17 | 20 | "files.associations": { |
18 | 21 | "*.ps1xml": "xml" |
19 | 22 | }, |
| 23 | + "cSpell.dictionaries": [ |
| 24 | + "powershell" |
| 25 | + ], |
20 | 26 | "cSpell.words": [ |
21 | 27 | "COMPANYNAME", |
22 | 28 | "HKLM", |
|
41 | 47 | "pscmdlet", |
42 | 48 | "steppable" |
43 | 49 | ], |
| 50 | + "cSpell.ignorePaths": [ |
| 51 | + ".git" |
| 52 | + ], |
44 | 53 | "[markdown]": { |
45 | 54 | "files.trimTrailingWhitespace": false, |
46 | 55 | "files.encoding": "utf8" |
47 | | - } |
| 56 | + }, |
| 57 | + "powershell.pester.useLegacyCodeLens": false, |
| 58 | + "pester.testFilePath": [ |
| 59 | + "[tT]ests/[qQ][aA]/*.[tT]ests.[pP][sS]1", |
| 60 | + "[tT]ests/[uU]nit/**/*.[tT]ests.[pP][sS]1", |
| 61 | + "[tT]ests/[uU]nit/*.[tT]ests.[pP][sS]1" |
| 62 | + ], |
| 63 | + "pester.runTestsInNewProcess": true, |
| 64 | + "pester.pesterModulePath": "./output/RequiredModules/Pester", |
| 65 | + "powershell.pester.codeLens": true, |
| 66 | + "pester.suppressCodeLensNotice": true, |
48 | 67 | } |
0 commit comments