tidy-up: update MS links, allow long URLs via checksrc

- update Microsoft documentation links.
  (also drop language designator where present.)

- checksrc: allow longer than 78 character lines if they
  contain a https URL. To make these links easier to use and parse.

- merge links that were split into two lines.

Closes #18626
This commit is contained in:
Viktor Szakats 2025-09-19 22:22:14 +02:00
parent 92f215fea1
commit 1429858bce
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
16 changed files with 33 additions and 42 deletions

View file

@ -516,7 +516,7 @@ sub scanfile {
}
# detect long lines
if(length($l) > $max_column) {
if(length($l) > $max_column && $l !~ / https:\/\//) {
checkwarn("LONGLINE", $line, length($l), $file, $l,
"Longer than $max_column columns");
}