Skip to content

Commit

Permalink
Fix ESLint errors
Browse files Browse the repository at this point in the history
Signed-off-by: William So <[email protected]>
  • Loading branch information
polyipseity committed Dec 19, 2023
1 parent a6acc16 commit 0ee651b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@
"exceptAfterSingleLine": true
}
],
"@typescript-eslint/max-params": "off",
"@typescript-eslint/member-delimiter-style": [
"error",
{
Expand Down
1 change: 1 addition & 0 deletions sources/import.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line @typescript-eslint/naming-convention
import PLazy from "p-lazy"
import { isNil } from "lodash-es"
import { lazyProxy } from "./util.js"
Expand Down
1 change: 1 addition & 0 deletions sources/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import type {
WithOpaque,
} from "ts-essentials"
import type { LibraryUUIDs } from "./magic.js"
// eslint-disable-next-line @typescript-eslint/naming-convention
import SemVer from "semver/classes/semver.js"

export type AnyObject = Readonly<Record<keyof any, unknown>>
Expand Down
1 change: 1 addition & 0 deletions sources/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import {
range,
} from "lodash-es"
import inspect, { type Options } from "browser-util-inspect"
// eslint-disable-next-line @typescript-eslint/naming-convention
import AsyncLock from "async-lock"
import { MAX_LOCK_PENDING } from "./internals/magic.js"
import type { SvelteComponent } from "svelte"
Expand Down

0 comments on commit 0ee651b

Please sign in to comment.