()
| 5 | import { DescriptionConfiguration } from "../shared"; |
| 6 | |
| 7 | export function getWorkspaceConfiguration(): WorkspaceConfiguration { |
| 8 | return workspace.getConfiguration("leetcode"); |
| 9 | } |
| 10 | |
| 11 | export function shouldHideSolvedProblem(): boolean { |
| 12 | return getWorkspaceConfiguration().get<boolean>("hideSolved", false); |
no outgoing calls
no test coverage detected