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 ab10096 commit df7bb12
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/find.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { returnTrue, isOne } from './helpers/functions.test.js'
import { isOne, returnTrue } from './helpers/functions.test.js'
import { getChild } from './helpers/inherited.test.js'
import { testOutput } from './helpers/output.test.js'
import { testValidation } from './helpers/validate.test.js'
Expand Down
6 changes: 3 additions & 3 deletions src/include/exclude.test.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {
isNamedTwo,
isNotOne,
isOne,
returnFalse,
returnTrue,
isOne,
isNotOne,
isNamedTwo,
} from '../helpers/functions.test.js'
import { getChild } from '../helpers/inherited.test.js'
import { testMutate } from '../helpers/mutate.test.js'
Expand Down
8 changes: 4 additions & 4 deletions src/include/include.test.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {
isNamedTwo,
isNotObject,
isObject,
isOne,
returnFalse,
returnTrue,
isOne,
isObject,
isNotObject,
isNamedTwo,
} from '../helpers/functions.test.js'
import { getChild } from '../helpers/inherited.test.js'
import { testOutput } from '../helpers/output.test.js'
Expand Down
2 changes: 1 addition & 1 deletion src/main.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Target, Query, Entry, Options } from 'wild-wild-path'
import type { Entry, Options, Query, Target } from 'wild-wild-path'

type Value = Entry['value']

Expand Down
12 changes: 6 additions & 6 deletions src/main.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { expectType, expectNotType } from 'tsd'
import type { Target, Entry } from 'wild-wild-path'
import { expectNotType, expectType } from 'tsd'
import type { Entry, Target } from 'wild-wild-path'

import {
map,
exclude,
find,
pick,
flatten,
include,
exclude,
map,
merge,
pick,
push,
unshift,
flatten,
} from 'wild-wild-utils'

const mapValue = (value: unknown): unknown => value
Expand Down
2 changes: 1 addition & 1 deletion src/map.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// We split the core methods of `wild-wild-path` to keep it small, and provide
// additional utilities built on top of it.
import { list, get, set } from 'wild-wild-path'
import { get, list, set } from 'wild-wild-path'

import { validateFunction } from './validate.js'

Expand Down

0 comments on commit df7bb12

Please sign in to comment.