Skip to content

Commit

Permalink
refactor: delete use strict
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin committed May 1, 2023
1 parent 5852060 commit aa551bd
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

import { window, workspace } from "vscode";

export class Config {
Expand Down
2 changes: 0 additions & 2 deletions src/currentFile.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

import { commands, StatusBarAlignment, StatusBarItem, window, workspace, env } from "vscode";
import { Config } from "./config";
import { QuickPicker, QuickPickerAction } from "./quickPicker";
Expand Down
2 changes: 0 additions & 2 deletions src/editorChangeListner.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

import { CurrentFile } from "./currentFile";
import { Disposable, window } from "vscode";

Expand Down
2 changes: 0 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

import { ExtensionContext, commands } from "vscode";
import { CurrentFile } from "./currentFile";
import { EditorChangeListner } from "./editorChangeListner";
Expand Down
2 changes: 0 additions & 2 deletions src/quickPicker.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

import { QuickPickItem, window } from "vscode";
import { PathStyles, PathStartsFrom } from "./utils/types";

Expand Down
2 changes: 0 additions & 2 deletions src/utils/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

export const PathStyles = {
UNIX: "unix",
WINDOWS: "windows"
Expand Down

0 comments on commit aa551bd

Please sign in to comment.