2022-05-11 17:01:22 +00:00
|
|
|
# Filter false positives from the .messages entry of Nu Validator output
|
|
|
|
.messages |= map(
|
|
|
|
. | select(
|
|
|
|
.type == "error" and
|
|
|
|
(
|
|
|
|
( # See https://github.com/w3c/css-validator/issues/361
|
|
|
|
.message == "CSS: Parse Error."
|
2022-05-13 03:51:11 +00:00
|
|
|
and .extract == "){outline:none}}@media(prefers"
|
2022-05-11 17:01:22 +00:00
|
|
|
and .hiliteLength == 1
|
|
|
|
)
|
|
|
|
or
|
|
|
|
( # See https://github.com/validator/validator/issues/1166
|
|
|
|
.message == "Attribute “media” not allowed on element “meta” at this point."
|
|
|
|
and (.extract | test(" name=\"theme-color\""))
|
|
|
|
)
|
2022-06-09 18:13:25 +00:00
|
|
|
or
|
2022-07-16 05:04:15 +00:00
|
|
|
( # see https://github.com/w3c/css-validator/issues/369
|
|
|
|
.message == "CSS: “contain-intrinsic-size”: Property “contain-intrinsic-size” doesn't exist."
|
|
|
|
)
|
|
|
|
or
|
2022-07-24 18:28:23 +00:00
|
|
|
( # see https://github.com/w3c/css-validator/issues/370
|
|
|
|
.message == "CSS: “contain”: “inline-size” is not a “contain” value."
|
|
|
|
)
|
2022-05-11 17:01:22 +00:00
|
|
|
) | not
|
|
|
|
)
|
2022-06-03 00:18:13 +00:00
|
|
|
) | del(..|select(. == [])) | del(..|select(. == {})) | select(. != null)
|