Skip to content

Commit

Permalink
chore: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger committed Dec 2, 2024
1 parent 4891037 commit 8293a28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
"enabled": true,
"rules": {
"recommended": true,
"correctness": {
"noUnusedImports": "warn"
},
"suspicious": {
"noConsole": "warn"
},
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { version, workspace } from "vscode";
import { workspace } from "vscode";

/**
* Platform identifier
Expand Down
3 changes: 1 addition & 2 deletions src/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@ import {
workspace,
} from "vscode";
import { Utils } from "vscode-uri";
import { findBiomeLocally } from "./binary-finder";
import {
getProjectDefinitions,
isEnabled,
workspaceFolderRequiresConfigFile,
} from "./config";
import { operatingMode, supportedLanguageIdentifiers } from "./constants";
import { error, warn } from "./logger";
import { warn } from "./logger";
import { state } from "./state";
import { directoryExists, fileExists } from "./utils";

Expand Down
2 changes: 0 additions & 2 deletions src/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ import {
fileExists,
fileIsExecutable,
generatePlatformSpecificVersionedBinaryName,
hasUntitledDocuments,
hasVSCodeUserDataDocuments,
shortURI,
subtractURI,
} from "./utils";
Expand Down

0 comments on commit 8293a28

Please sign in to comment.