Skip to content

Commit 8944d63

Browse files
committed
Update dprint plugins
1 parent b0dcca6 commit 8944d63

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

dprint.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"src/test/converter2/issues/gh2631/crlf.md"
2020
],
2121
"plugins": [
22-
"https://plugins.dprint.dev/typescript-0.95.9.wasm",
23-
"https://plugins.dprint.dev/json-0.20.0.wasm",
24-
"https://plugins.dprint.dev/markdown-0.19.0.wasm",
25-
"https://plugins.dprint.dev/g-plane/malva-v0.14.1.wasm"
22+
"https://plugins.dprint.dev/typescript-0.95.13.wasm",
23+
"https://plugins.dprint.dev/json-0.21.0.wasm",
24+
"https://plugins.dprint.dev/markdown-0.20.0.wasm",
25+
"https://plugins.dprint.dev/g-plane/malva-v0.15.1.wasm"
2626
]
2727
}

example/src/documents/external-markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ to include multiple documents.
4444
```jsonc
4545
// typedoc.json
4646
{
47-
"projectDocuments": ["documents/*.md"]
47+
"projectDocuments": ["documents/*.md"],
4848
}
4949
```
5050

site/development/third-party-symbols.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ package rather than the `global` package. In order to support both `{@link
3434
// For these you should probably install typedoc-plugin-mdn-links instead
3535
"global": {
3636
// Handle {@link !Promise}
37-
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise"
37+
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
3838
},
3939
"typescript": {
4040
// Handle type X = Promise<number>
41-
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise"
42-
}
43-
}
41+
"Promise": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
42+
},
43+
},
4444
}
4545
```
4646

@@ -52,9 +52,9 @@ A wildcard can be used to provide a fallback link to any unmapped type.
5252
"externalSymbolLinkMappings": {
5353
"external-lib": {
5454
"SomeObject": "https://external-lib.site/docs/SomeObject",
55-
"*": "https://external-lib.site/docs"
56-
}
57-
}
55+
"*": "https://external-lib.site/docs",
56+
},
57+
},
5858
}
5959
```
6060

site/options/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ This option may only be set within a config file.
8787
{
8888
"compilerOptions": {
8989
"skipLibCheck": true,
90-
"strictNullChecks": false
91-
}
90+
"strictNullChecks": false,
91+
},
9292
}
9393
```
9494

site/options/input.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ typedoc --entryPoints src/index.ts --entryPoints src/alt.ts
1616
```jsonc
1717
// typedoc.json
1818
{
19-
"entryPoints": ["src/index.ts", "src/alt.ts", "src/multiple/*.ts"]
19+
"entryPoints": ["src/index.ts", "src/alt.ts", "src/multiple/*.ts"],
2020
}
2121
```
2222

static/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1595,9 +1595,9 @@
15951595
.container-main {
15961596
grid-template-columns:
15971597
minmax(0, 1fr) minmax(0, 2.5fr) minmax(
1598-
0,
1599-
20rem
1600-
);
1598+
0,
1599+
20rem
1600+
);
16011601
grid-template-areas: "sidebar content toc";
16021602
}
16031603

0 commit comments

Comments
 (0)