Skip to content

Commit

Permalink
feat: added linter related properties
Browse files Browse the repository at this point in the history
  • Loading branch information
szkiba committed Jul 26, 2024
1 parent 1b7895a commit f55beba
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/registry.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,20 @@
},
"description": "List of supported versions.\n\nVersions are tags whose format meets the requirements of semantic versioning. Version tags often start with the letter `v`, which is not part of the semantic version.\n"
},
"public": {
"type": "boolean",
"default": "false",
"description": "Public repository flag.\n\nA `true` value indicates that the repository is public, available to anyone.\n"
},
"license": {
"type": "string",
"default": "",
"description": "The SPDX ID of the extension's license.\n\nFor more information about SPDX, visit https://spdx.org/licenses/\n"
},
"archived": {
"type": "boolean",
"default": "false",
"description": "Archived repository flag.\n\nA `true` value indicates that the repository is archived, read only.\n\nIf a repository is archived, it usually means that the owner has no intention of maintaining it. Such extensions should be removed from the registry.\n"
}
}
}
Expand Down
16 changes: 16 additions & 0 deletions docs/registry.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,26 @@ $defs:
List of supported versions.
Versions are tags whose format meets the requirements of semantic versioning. Version tags often start with the letter `v`, which is not part of the semantic version.
public:
type: boolean
default: "false"
description: |
Public repository flag.
A `true` value indicates that the repository is public, available to anyone.
license:
type: string
default: ""
description: |
The SPDX ID of the extension's license.
For more information about SPDX, visit https://spdx.org/licenses/
archived:
type: boolean
default: "false"
description: |
Archived repository flag.
A `true` value indicates that the repository is archived, read only.
If a repository is archived, it usually means that the owner has no intention of maintaining it. Such extensions should be removed from the registry.

0 comments on commit f55beba

Please sign in to comment.