Skip to content

Commit 32611b8

Browse files
committed
Set 'alwaysStrict' to true. / Add license header
1 parent aa539cb commit 32611b8

19 files changed

+39
-20
lines changed

src/commands/cache.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import { leetCodeExecutor } from "../leetCodeExecutor";
45
import { DialogType, promptForOpenOutputChannel } from "../utils/uiUtils";

src/commands/list.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as vscode from "vscode";
45
import { leetCodeExecutor } from "../leetCodeExecutor";

src/commands/plugin.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as fse from "fs-extra";
45
import * as os from "os";

src/commands/session.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as vscode from "vscode";
45
import { leetCodeExecutor } from "../leetCodeExecutor";

src/commands/show.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as fse from "fs-extra";
45
import * as vscode from "vscode";

src/commands/submit.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as vscode from "vscode";
45
import { leetCodeExecutor } from "../leetCodeExecutor";

src/commands/test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as fse from "fs-extra";
45
import * as vscode from "vscode";

src/extension.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as vscode from "vscode";
45
import * as cache from "./commands/cache";

src/leetCodeChannel.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as vscode from "vscode";
45

src/leetCodeExecutor.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"use strict";
1+
// Copyright (c) jdneo. All rights reserved.
2+
// Licensed under the MIT license.
23

34
import * as cp from "child_process";
45
import * as opn from "opn";

0 commit comments

Comments
 (0)