()
| 172 | } |
| 173 | |
| 174 | export function getSettings(): Settings { |
| 175 | const configuration: vscode.WorkspaceConfiguration = |
| 176 | vscode.workspace.getConfiguration(utils.PowerShellLanguageId); |
| 177 | |
| 178 | return getSetting(undefined, new Settings(), configuration); |
| 179 | } |
| 180 | |
| 181 | // Get the ConfigurationTarget (read: scope) of where the *effective* setting value comes from |
| 182 | export function getEffectiveConfigurationTarget( |
no test coverage detected