Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint/lib/shared/ajv.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (28 sloc)
980 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @fileoverview The instance of Ajv validator. | |
* @author Evgeny Poberezkin | |
*/ | |
"use strict"; | |
//------------------------------------------------------------------------------ | |
// Requirements | |
//------------------------------------------------------------------------------ | |
const Ajv = require("ajv"), | |
metaSchema = require("ajv/lib/refs/json-schema-draft-04.json"); | |
//------------------------------------------------------------------------------ | |
// Public Interface | |
//------------------------------------------------------------------------------ | |
module.exports = (additionalOptions = {}) => { | |
const ajv = new Ajv({ | |
meta: false, | |
useDefaults: true, | |
validateSchema: false, | |
missingRefs: "ignore", | |
verbose: true, | |
schemaId: "auto", | |
...additionalOptions | |
}); | |
ajv.addMetaSchema(metaSchema); | |
// eslint-disable-next-line no-underscore-dangle | |
ajv._opts.defaultMeta = metaSchema.id; | |
return ajv; | |
}; |