Skip to content

Commit 6e2ffed

Browse files
committed
added mlc_config
1 parent aab4989 commit 6e2ffed

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

mlc.config.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"projectBaseUrl": "${workspaceFolder}",
3+
"ignorePatterns": [
4+
{
5+
"pattern": "^http://example.net"
6+
},
7+
8+
{
9+
"pattern": "https://console.cloud.google.com"
10+
},
11+
{
12+
"pattern": "https://storage.googleapis.com"
13+
},
14+
{
15+
"pattern": "https://looker.example.com"
16+
},
17+
{
18+
"pattern": "https://xxx.cloud.dgraph.io/"
19+
},
20+
{
21+
"pattern": "https://claude.ai/download"
22+
},
23+
{
24+
"pattern": "http://127.0.0.1"
25+
},
26+
{
27+
"pattern": "5000"
28+
},
29+
{
30+
"pattern": "8080"
31+
}
32+
],
33+
"replacementPatterns": [
34+
{
35+
"pattern": "^.attachments",
36+
"replacement": "file://some/conventional/folder/.attachments"
37+
},
38+
{
39+
"pattern": "^/",
40+
"replacement": "{{BASEURL}}/"
41+
},
42+
{
43+
"pattern": "%20",
44+
"replacement": "-",
45+
"global": true
46+
},
47+
{
48+
"pattern": "images/(?<filename>.*)",
49+
"replacement": "assets/$<filename>"
50+
}
51+
],
52+
"httpHeaders": [
53+
{
54+
"urls": ["https://example.com"],
55+
"headers": {
56+
"Authorization": "Basic Zm9vOmJhcg==",
57+
"Foo": "Bar"
58+
}
59+
}
60+
],
61+
"timeout": "20s",
62+
"retryOn429": true,
63+
"retryCount": 5,
64+
"fallbackRetryDelay": "30s",
65+
"aliveStatusCodes": [200, 206]
66+
}

0 commit comments

Comments
 (0)