diff --git a/biome.jsonc b/biome.jsonc index fe08bdf..df6ab89 100644 --- a/biome.jsonc +++ b/biome.jsonc @@ -20,7 +20,9 @@ "noConsole": "off", // This rule reports bun as an undeclared dependency // ref: https://github.com/biomejs/biome/issues/2074 - "noUndeclaredDependencies": "off" + "noUndeclaredDependencies": "off", + // This rule collides with lint/nursery/noBarrelFile + "useImportRestrictions": "off" } } }, diff --git a/src/embeds.ts b/src/embeds.ts index e9407aa..9181a39 100644 --- a/src/embeds.ts +++ b/src/embeds.ts @@ -15,7 +15,7 @@ import normalizeUrl, { type Options as NormalizeUrlOptions, } from "normalize-url"; import { driveClient, fileTypes } from "./gdrive"; -import { appendInvisible, decodeAppendedInvisible } from "./util"; +import { appendInvisible, decodeAppendedInvisible } from "./util/invisible"; /** * Extract Google Drive file IDs from a string. diff --git a/src/util/index.ts b/src/util/index.ts deleted file mode 100644 index 90d8345..0000000 --- a/src/util/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { appendInvisible, decodeAppendedInvisible } from "./invisible";