forked from ethereum-optimism/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.remarkrc.mjs
More file actions
33 lines (32 loc) · 767 Bytes
/
.remarkrc.mjs
File metadata and controls
33 lines (32 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import remarkLintNoBlockedCharacters from './utils/plugins/remark/remark-lint-no-blocked-characters.mjs'
export default {
plugins: [
remarkLintNoBlockedCharacters,
"remark-gfm",
"remark-frontmatter",
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
"remark-lint-table-cell-padding",
"remark-lint-table-pipe-alignment",
"remark-lint-table-pipes",
"@double-great/remark-lint-alt-text",
[
"remark-lint-heading-style",
"atx"
],
[
"remark-lint-unordered-list-marker-style",
"*"
],
[
"remark-lint-frontmatter-schema",
{
schemas: {
"./utils/schemas/page.schema.yaml": [
"./pages/**/*.mdx"
]
}
}
]
]
}