generated from AdobeDocs/dev-site-documentation-template
-
Notifications
You must be signed in to change notification settings - Fork 14
/
.remarkrc.mjs
36 lines (35 loc) · 885 Bytes
/
.remarkrc.mjs
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
34
35
36
import remarkHeadingId from "remark-heading-id";
import remarkValidateLinks from "remark-validate-links";
import remarkFrontmatter from "remark-frontmatter";
import remarkLintFrontmatterSchema from "remark-lint-frontmatter-schema";
import remarkLintNoDeadUrls from "remark-lint-no-dead-urls";
const remarkConfig = {
plugins: [
remarkHeadingId,
remarkValidateLinks,
remarkFrontmatter,
[
remarkLintFrontmatterSchema,
{
schemas: {
/* One schema for many files */
"./.github/linters/metadata.schema.yml": [
/* Support glob patterns ———v */
"./src/pages/**/*.md",
],
},
},
],
[
remarkLintNoDeadUrls,
{
skipUrlPatterns: [
"https://magento.biterg.io",
"https://github.com/magento/partners-magento2ee",
"https://github.com/magento/partners-magento2b2b"
]
}
]
],
};
export default remarkConfig;