mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
# 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."
|
|
and .extract == "){outline:none}}@media(prefers"
|
|
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\""))
|
|
)
|
|
or
|
|
( # see https://github.com/w3c/css-validator/issues/369
|
|
.message == "CSS: “contain-intrinsic-size”: Property “contain-intrinsic-size” doesn't exist."
|
|
)
|
|
or
|
|
( # see https://github.com/w3c/css-validator/issues/370
|
|
.message == "CSS: “contain”: “inline-size” is not a “contain” value."
|
|
)
|
|
or
|
|
( # the search page has raw templates, let those slide. I validate the final dynamic search page manually.
|
|
.url | test ("/search/index.")
|
|
)
|
|
) | not
|
|
)
|
|
) | del(..|select(. == [])) | del(..|select(. == {})) | select(. != null)
|