Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions minimum_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,22 @@
"packages": {
"type": "object",
"patternProperties": {
"^[a-z][-a-z_]*$": {"type": "integer", "minimum": 1}
"^[a-z][a-z0-9_]*$": {"type": "integer", "minimum": 1}
},
"additionalProperties": False,
},
"default": {"type": "integer", "minimum": 1},
"overrides": {
"type": "object",
"patternProperties": {
"^[a-z][-a-z_]*": {"type": "string", "format": "date"}
"^[a-z][a-z0-9_-]*": {"type": "string", "format": "date"}
},
"additionalProperties": False,
},
"exclude": {"type": "array", "items": {"type": "string"}},
"ignored_violations": {
"type": "array",
"items": {"type": "string", "pattern": "^[a-z][-a-z_]*$"},
"items": {"type": "string", "pattern": r"^[a-z][a-z0-9_-]*$"},
},
},
"required": [
Expand Down
Loading