Skip to content

Commit c6d01c8

Browse files
committed
chore: fix json schema URL
Our TOML linting currently fails with: ```text Error: failed to fetch catalog: https://json.schemastore.org/api/json/catalog.json, reason: unexpected status: 503 ``` Setting the store URL to the actual new location helps. Also see SchemaStore/schemastore#5106 .
1 parent 22f8766 commit c6d01c8

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tombi.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
[files]
22
exclude = [".jj/**/*.toml", "target/**/*.toml"]
3+
4+
[schema]
5+
catalog = {
6+
paths = [
7+
"https://www.schemastore.org/api/json/catalog.json",
8+
],
9+
}

0 commit comments

Comments
 (0)