Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Oct 31, 2024
1 parent c1ee218 commit 7a2aaf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import isPlainObj from 'is-plain-obj'

import { shouldPatchArray, patchArray } from './array.js'
import { patchArray, shouldPatchArray } from './array.js'
import { cloneSecondValue } from './clone.js'
import { isDeleted } from './delete.js'
import { DEFAULT_MERGE, parseMergeFlag } from './merge.js'
Expand Down
2 changes: 1 addition & 1 deletion src/main.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable no-underscore-dangle, @typescript-eslint/naming-convention */
import { expectType, expectAssignable, expectNotAssignable } from 'tsd'
import { expectAssignable, expectNotAssignable, expectType } from 'tsd'

import declarativeMerge, { type Options } from 'declarative-merge'

Expand Down
2 changes: 1 addition & 1 deletion src/object.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { cloneFirstValue } from './clone.js'
import { isDeleted } from './delete.js'
import { isEnum, getEnumKeys, getEnumValue } from './enum.js'
import { getEnumKeys, getEnumValue, isEnum } from './enum.js'

// Merge two objects deeply.
export const deepMergeObjects = ({
Expand Down

0 comments on commit 7a2aaf3

Please sign in to comment.