Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/main' into live
Browse files Browse the repository at this point in the history
  • Loading branch information
octogonz committed Jun 25, 2024
2 parents b6f7c31 + 528684f commit f1faa01
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 2 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"
}
}
}
}
}
]
}
}
}
}
8 changes: 6 additions & 2 deletions teams/v1.17/MicrosoftTeams.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1210,11 +1210,15 @@
"scopes": {
"type": "array",
"description": "Identifies the scopes in which the add-in can run.",
"maxItems": 1,
"minItems": 1,
"maxItems": 4,
"items": {
"type": "string",
"enum": [
"mail"
"mail",
"workbook",
"document",
"presentation"
]
}
},
Expand Down

0 comments on commit f1faa01

Please sign in to comment.