fix: resolve CI/CD test and lint failures
Some checks failed
CI / test (3.10) (push) Failing after 4m49s
CI / test (3.11) (push) Failing after 4m54s
CI / test (3.12) (push) Failing after 4m52s
CI / test (3.9) (push) Failing after 4m51s
CI / build (push) Has been skipped

This commit is contained in:
2026-02-03 05:31:54 +00:00
parent 84deb2aff5
commit a0e131dff4

View File

@@ -6,7 +6,39 @@
"type": "string"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"description": {
"type": "string"
},
"author": {
"type": "string"
},
"settings": {
"type": "object",
"properties": {
"debug": {
"type": "boolean"
},
"timeout": {
"type": "integer",
"minimum": 0
},
"retries": {
"type": "integer",
"minimum": 0,
"maximum": 10
}
},
"required": ["debug", "timeout"]
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
}
},
"required": ["name", "version"]