Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gurgunday committed Jul 10, 2024
1 parent a6bf40e commit 7ee286f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/compile/resolve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type {AnySchema, AnySchemaObject, UriResolver} from "../types"
import type Ajv from "../ajv"
import type {URIComponent} from "fast-uri"
import {eachItem} from "./util"
import { dequal as equal } from "dequal"
import {dequal as equal} from "dequal"
import * as traverse from "json-schema-traverse"

// the hash of local references inside the schema (created by getSchemaRefs), used for inline resolution
Expand Down
2 changes: 1 addition & 1 deletion lib/runtime/equal.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/ajv-validator/ajv/issues/889
import { dequal as equal } from "dequal"
import {dequal as equal} from "dequal"

type Equal = typeof equal & {code: string}
;(equal as Equal).code = 'require("ajv/dist/runtime/equal").default'
Expand Down

0 comments on commit 7ee286f

Please sign in to comment.