Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Nov 1, 2024
1 parent 0f16fc8 commit d84e405
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/enum.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ import { each } from 'test-each'

import declarativeMerge from 'declarative-merge'

// eslint-disable-next-line fp/no-mutating-methods
const notEnumObj = Object.defineProperty({}, 'notEnum', { value: 1 })
const notEnumSym = Symbol('notEnum')
// eslint-disable-next-line fp/no-mutating-methods
const notEnumSymObj = Object.defineProperty({}, notEnumSym, { value: 1 })

// This also test that both arguments' plain objects are deeply cloned
Expand Down

0 comments on commit d84e405

Please sign in to comment.