Skip to content

Improve documentation test

What does this MR do?

This MR makes a couple of small changes:

  • removes (https?:){0} from InternalLinkExtension Vale rule (which does nothing because of the zero regex quantifier, {0})
  • replaces .+? ("any character one or more times, optional") with .* (any character zero or more times), which is logically equivalent and more common
  • removes (- ){0} from VersionText.yml Vale rule
  • fixes a bug (replaces [^\n`] with [^\n]) in VersionText.yml Vale rule, introduced in 39aad853
  • fixes a broken link
  • replaces master branch with main branch (style guide)

How to setup and validate locally

  1. Run vale --minAlertLevel=error doc/
  2. Check for ✔ 0 errors, 0 warnings and 0 suggestions in 1307 files.

Does this MR meet the acceptance criteria?

Conformity

Edited by Marcel Amirault

Merge request reports