2016-08-08 08:42:20 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
cd "$(dirname "$0")/.."
|
2019-10-22 05:06:14 -04:00
|
|
|
echo "=> Linting documents at path $(pwd) as $(whoami)..."
|
2016-08-08 08:42:20 -04:00
|
|
|
|
|
|
|
# Use long options (e.g. --header instead of -H) for curl examples in documentation.
|
2018-03-26 09:05:33 -04:00
|
|
|
echo '=> Checking for cURL short options...'
|
2017-09-25 04:50:06 -04:00
|
|
|
grep --extended-regexp --recursive --color=auto 'curl (.+ )?-[^- ].*' doc/ >/dev/null 2>&1
|
2017-10-03 11:15:40 -04:00
|
|
|
if [ $? -eq 0 ]
|
2016-08-08 08:42:20 -04:00
|
|
|
then
|
2017-09-25 04:50:06 -04:00
|
|
|
echo '✖ ERROR: Short options for curl should not be used in documentation!
|
|
|
|
Use long options (e.g., --header instead of -H):' >&2
|
|
|
|
grep --extended-regexp --recursive --color=auto 'curl (.+ )?-[^- ].*' doc/
|
2016-08-08 08:42:20 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2016-10-16 14:29:45 -04:00
|
|
|
# Ensure that the CHANGELOG.md does not contain duplicate versions
|
|
|
|
DUPLICATE_CHANGELOG_VERSIONS=$(grep --extended-regexp '^## .+' CHANGELOG.md | sed -E 's| \(.+\)||' | sort -r | uniq -d)
|
2018-03-26 09:05:33 -04:00
|
|
|
echo '=> Checking for CHANGELOG.md duplicate entries...'
|
2016-08-25 16:48:17 -04:00
|
|
|
if [ "${DUPLICATE_CHANGELOG_VERSIONS}" != "" ]
|
|
|
|
then
|
2016-10-16 14:29:45 -04:00
|
|
|
echo '✖ ERROR: Duplicate versions in CHANGELOG.md:' >&2
|
2016-08-25 16:48:17 -04:00
|
|
|
echo "${DUPLICATE_CHANGELOG_VERSIONS}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-09-25 04:50:06 -04:00
|
|
|
# Make sure no files in doc/ are executable
|
2019-10-11 02:06:27 -04:00
|
|
|
EXEC_PERM_COUNT=$(find doc/ -type f -perm 755 | wc -l)
|
2019-10-22 05:06:14 -04:00
|
|
|
echo "=> Checking $(pwd)/doc for executable permissions..."
|
2017-09-25 04:50:06 -04:00
|
|
|
if [ "${EXEC_PERM_COUNT}" -ne 0 ]
|
|
|
|
then
|
|
|
|
echo '✖ ERROR: Executable permissions should not be used in documentation! Use `chmod 644` to the files in question:' >&2
|
2019-10-11 02:06:27 -04:00
|
|
|
find doc/ -type f -perm 755
|
2017-09-25 04:50:06 -04:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-03-26 09:05:33 -04:00
|
|
|
# Do not use 'README.md', instead use 'index.md'
|
|
|
|
# Number of 'README.md's as of 2018-03-26
|
2019-09-13 14:06:03 -04:00
|
|
|
NUMBER_READMES=46
|
2018-03-26 09:05:33 -04:00
|
|
|
FIND_READMES=$(find doc/ -name "README.md" | wc -l)
|
|
|
|
echo '=> Checking for new README.md files...'
|
2019-09-13 14:06:03 -04:00
|
|
|
if [ ${FIND_READMES} -ne $NUMBER_READMES ]
|
2018-03-26 09:05:33 -04:00
|
|
|
then
|
2019-09-13 14:06:03 -04:00
|
|
|
echo
|
|
|
|
echo ' ✖ ERROR: New README.md file(s) detected, prefer index.md over README.md.' >&2
|
|
|
|
echo ' https://docs.gitlab.com/ee/development/documentation/styleguide.html#working-with-directories-and-files'
|
|
|
|
echo
|
|
|
|
exit 1
|
2018-03-26 09:05:33 -04:00
|
|
|
fi
|
|
|
|
|
2016-08-08 08:42:20 -04:00
|
|
|
echo "✔ Linting passed"
|
|
|
|
exit 0
|