()
| 50 | } |
| 51 | |
| 52 | export function getLeetCodeEndpoint(): string { |
| 53 | const leetCodeConfig: vscode.WorkspaceConfiguration = vscode.workspace.getConfiguration("leetcode"); |
| 54 | return leetCodeConfig.get<string>("endpoint", Endpoint.LeetCode); |
| 55 | } |
| 56 | |
| 57 | const SORT_ORDER: SortingStrategy[] = [ |
| 58 | SortingStrategy.None, |
no outgoing calls
no test coverage detected