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

@@ -1,13 +1,45 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"type": "object", "type": "object",
"properties": { "properties": {
"name": { "name": {
"type": "string" "type": "string"
},
"version": {
"type": "string"
}
}, },
"required": ["name", "version"] "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"]
} }