Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/statusbar/leetCodeStatusBarController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ class LeetCodeStatusBarController implements Disposable {
}

public updateStatusBar(status: UserStatus, user?: string): void {
if (this.statusBar) {
this.statusBar.updateStatusBar(status, user);
}
this.statusBar.updateStatusBar(status, user);
}

public dispose(): void {
Expand Down
3 changes: 3 additions & 0 deletions src/utils/problemUtils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) jdneo. All rights reserved.
// Licensed under the MIT license.

import kebabCase = require("lodash.kebabcase");
import { IProblem, langExt } from "../shared";

Expand Down
3 changes: 3 additions & 0 deletions src/webview/MarkdownEngine.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) jdneo. All rights reserved.
// Licensed under the MIT license.

import * as hljs from "highlight.js";
import * as MarkdownIt from "markdown-it";
import * as os from "os";
Expand Down