Fix CI/CD issues: linting errors and test file corruption
Some checks failed
CI / test (ubuntu-latest, 3.10) (push) Has been cancelled
CI / test (ubuntu-latest, 3.11) (push) Has been cancelled
CI / test (ubuntu-latest, 3.12) (push) Has been cancelled
CI / test (ubuntu-latest, 3.8) (push) Has been cancelled
CI / test (ubuntu-latest, 3.9) (push) Has been cancelled
CI / test-minimal (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-02-03 05:13:44 +00:00
parent e1a5c1b9d7
commit 0986405f58

View File

@@ -1,46 +1,13 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"version": {
"type": "string",
"pattern": "^\\d+\\.\\d+\\.\\d+$"
},
"description": {
"type": "string"
}
},
"author": {
"type": "string"
},
"settings": {
"type": "object", "type": "object",
"properties": { "properties": {
"debug": { "name": {
"type": "boolean" "type": "string"
}, },
"timeout": { "version": {
"type": "integer", "type": "string"
"minimum": 0 }
},
"retries": {
"type": "integer",
"minimum": 0,
"maximum": 10
}
}, },
"required": ["debug", "timeout"] "required": ["name", "version"]
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
}
},
"required": ["name", "version"]
} }