Skip to content

Commit 75f6e34

Browse files
committed
Remark config: skip select PEAR URLs
Looks like PEAR has added some type of rate limiting/DDOS protected which causes the check against dead URLs to fail due to time-outs. Let's skip the typical user and bug report URLs for now to allow the builds to pass.
1 parent a2584dd commit 75f6e34

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.remarkrc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
{
1414
"skipUrlPatterns": [
1515
"^https?://github\\.com/PHPCSStandards/PHP_CodeSniffer/compare/[0-9\\.]+?\\.{3}[0-9\\.]+",
16-
"^https?://github\\.com/[A-Za-z0-9-]+"
16+
"^https?://github\\.com/[A-Za-z0-9-]+",
17+
"^https?://pear\\.php\\.net/user/.+",
18+
"^https?://pear\\.php\\.net/bugs/bug\\.php\\?id=[0-9]+"
1719
]
1820
}
1921
],

0 commit comments

Comments
 (0)