Skip to content

Commit

Permalink
修复 markdown 链接检查配置文件 (The-Run-Philosophy-Organization#581)
Browse files Browse the repository at this point in the history
配置文件中,JSON field 缺少引号
  • Loading branch information
xijinping0 authored Oct 27, 2022
1 parent 6edff63 commit 5a59202
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .markdownlinks.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
ignorePatterns: [
"ignorePatterns": [
{
pattern: "^http(s)?://cdnjs.cloudflare.com"
"pattern": "^http(s)?://cdnjs.cloudflare.com"
},
{
pattern: "^http(s)?://www.cloudflare.com/"
"pattern": "^http(s)?://www.cloudflare.com/"
},
],
timeout: "60s",
retryOn429: true,
retryCount: 5,
aliveStatusCodes: [0, 403, 429, 200],
fallbackRetryDelay: "60s"
"timeout": "60s",
"retryOn429": true,
"retryCount": 5,
"aliveStatusCodes": [0, 403, 429, 200],
"fallbackRetryDelay": "60s"
}

0 comments on commit 5a59202

Please sign in to comment.