Skip to content

Commit

Permalink
chore(biome.jsonc): disable colliding rule
Browse files Browse the repository at this point in the history
  • Loading branch information
risu729 authored and renovate[bot] committed Mar 14, 2024
1 parent 209c01b commit 599eda8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/embeds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 0 additions & 1 deletion src/util/index.ts

This file was deleted.

0 comments on commit 599eda8

Please sign in to comment.