(key: string, defaultValue: T)
| 276 | } |
| 277 | |
| 278 | private getConfig<T>(key: string, defaultValue: T): NullAsUndefined<T> { |
| 279 | return nullToUndefined(this.config.get<T>(key, defaultValue)); |
| 280 | } |
| 281 | |
| 282 | get analysisExcludedFolders(): string[] { return this.getConfig<string[]>("analysisExcludedFolders", []); } |
| 283 | get analyzerInstrumentationLogFile(): undefined | string { return createFolderForFile(insertWorkspaceName(resolvePaths(this.getConfig<null | string>("analyzerInstrumentationLogFile", null)))); } |
no test coverage detected