forked from AdobeDocs/commerce-frontend-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.remarkrc.mjs
35 lines (34 loc) · 804 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
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://www.php.net",
"https://jqueryvalidation.org"
]
}
]
]
};
export default remarkConfig;