mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"title": "Git committers plugin",
|
|
"oneOf": [
|
|
{
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
|
"enum": [
|
|
"git-committers"
|
|
]
|
|
},
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"git-authors": {
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"title": "Enable plugin",
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2#config",
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"repository": {
|
|
"title": "Repository slug",
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2#config",
|
|
"type": "string"
|
|
},
|
|
"token": {
|
|
"title": "Personal access token",
|
|
"markdownDescription": "https://github.com/ojacques/mkdocs-git-committers-plugin-2#config",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"repository"
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
]
|
|
}
|