Skip to content

Commit

Permalink
Add lockfile-lint.schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
octogonz committed Jun 25, 2024
1 parent 2c2f8fa commit 22cf2fc
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions lockfile-explorer/lockfile-lint.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Lockfile Lint Configuration",
"description": "The lockfile-explorer.json configuration file for lockfile-lint tool.",
"type": "object",
"additionalProperties": false,
"properties": {
"$schema": {
"description": "Part of the JSON Schema standard, this optional keyword declares the URL of the schema that the file conforms to. Editors may download the schema and use it to perform syntax highlighting.",
"type": "string"
},
"rules": {
"description": "The rules adopted by Monorepo and the lockfile-lint will help to check.",
"type": "array",
"items": {
"type": "object",
"oneOf": [
{
"type": "object",
"required": ["rule", "project", "requiredVersions"],
"properties": {
"rule": {
"description": "Rule name applied to the project.",
"const": "restrict-versions"
},
"project": {
"description": "Project name.",
"type": "string"
},
"requiredVersions": {
"description": "List of restrict dependency version.",
"type": "object",
"patternProperties": {
".*": {
"type": "string"
}
}
}
}
}
]
}
}
}
}

0 comments on commit 22cf2fc

Please sign in to comment.