Skip to content

Commit

Permalink
chore: eslint-plugin-import@2.28.0 prep
Browse files Browse the repository at this point in the history
- #342
- import-js/eslint-plugin-import#2843

Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
  • Loading branch information
unicornware committed Aug 1, 2023
1 parent b9bbcb3 commit 078b239
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/utils/__tests__/assign-with.spec.ts
Expand Up @@ -4,8 +4,7 @@
*/

import VEHICLE from '#fixtures/vehicle'
import type { AssignCustomizer } from '../assign-with'
import testSubject from '../assign-with'
import testSubject, { type AssignCustomizer } from '../assign-with'
import isUndefined from '../is-undefined'

describe('unit:utils/assignWith', () => {
Expand Down
3 changes: 1 addition & 2 deletions src/utils/__tests__/merge-with.spec.ts
Expand Up @@ -5,8 +5,7 @@

import type Vehicle from '#fixtures/types/vehicle'
import isArray from '../is-array'
import type { MergeCustomizer } from '../merge-with'
import testSubject from '../merge-with'
import testSubject, { type MergeCustomizer } from '../merge-with'

describe('unit:utils/mergeWith', () => {
let base: { riders: string[]; vehicle: { vin: Vehicle['vin'] } }
Expand Down
3 changes: 1 addition & 2 deletions src/utils/__tests__/overwrite-with.spec.ts
Expand Up @@ -5,8 +5,7 @@

import type Vehicle from '#fixtures/types/vehicle'
import isUndefined from '../is-undefined'
import type { OverwriteCustomizer } from '../overwrite-with'
import testSubject from '../overwrite-with'
import testSubject, { type OverwriteCustomizer } from '../overwrite-with'

describe('unit:utils/overwriteWith', () => {
let customizer: OverwriteCustomizer
Expand Down

0 comments on commit 078b239

Please sign in to comment.