Skip to content

Commit

Permalink
fix: improve config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Feb 2, 2024
1 parent 9232038 commit a1340b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion schema/html-w3c-validatorrc-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"$schema": {
"description": "JSON Schema URI",
"type": "string",
"format": "uri",
"default": "https://raw.githubusercontent.com/theoludwig/html-w3c-validator/main/schema/html-w3c-validatorrc-schema.json"
},
"urls": {
Expand All @@ -17,6 +18,7 @@
"items": {
"description": "URL to validate.",
"type": "string",
"format": "uri",
"minLength": 1
}
},
Expand All @@ -28,11 +30,12 @@
"items": {
"description": "File to validate.",
"type": "string",
"format": "uri-reference",
"minLength": 1
}
},
"severities": {
"description": "Specify the severities of the validator messages to report.",
"description": "Specify the severities to report.",
"type": "array",
"minItems": 1,
"default": ["warning", "error"],
Expand Down

0 comments on commit a1340b2

Please sign in to comment.