mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "https://raw.githubusercontent.com/theoludwig/html-w3c-validator/master/schema/html-w3c-validatorrc-schema.json",
|
|
"title": "html-w3c-validator configuration schema",
|
|
"type": "object",
|
|
"properties": {
|
|
"$schema": {
|
|
"description": "JSON Schema URI",
|
|
"type": "string",
|
|
"format": "uri",
|
|
"default": "https://raw.githubusercontent.com/theoludwig/html-w3c-validator/master/schema/html-w3c-validatorrc-schema.json"
|
|
},
|
|
"urls": {
|
|
"description": "URLs to validate.",
|
|
"type": "array",
|
|
"default": [],
|
|
"minItems": 1,
|
|
"items": {
|
|
"description": "URL to validate.",
|
|
"type": "string",
|
|
"format": "uri",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"files": {
|
|
"description": "Files to validate.",
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"default": [],
|
|
"items": {
|
|
"description": "File to validate.",
|
|
"type": "string",
|
|
"format": "uri-reference",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"severities": {
|
|
"description": "Specify the severities to report.",
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"default": ["warning", "error"],
|
|
"items": {
|
|
"description": "Severity to report.",
|
|
"type": "string",
|
|
"enum": ["error", "warning", "info"]
|
|
}
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|