1
0
Fork 1
mirror of https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git synced 2025-07-12 19:09:56 +03:00

ci/markdownlint: disable "descriptive link text test"

This is a silly test, it's currently failing because of this piece of markdown:

> Python versions (see [here](https://www.python.org/downloads/)).

It thinks "here" is too short 🤦‍♂️
This commit is contained in:
Clayton Craft 2025-05-20 12:09:35 -07:00
parent aebf99e988
commit 6f2e50b02f
No known key found for this signature in database
GPG key ID: 4A4CED6D7EDF950A

View file

@ -25,7 +25,7 @@ fi
find . -name '*.md' |
while read -r file; do
echo "mdl: $file"
if ! "$MDL" "$file"; then
if ! "$MDL" --disable MD059 -- "$file"; then
echo
echo "markdown lint failed!"
exit 1