forked from AdobeDocs/commerce-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.remarkrc.mjs
39 lines (38 loc) · 954 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
37
38
39
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://cardinalcommerce.com/",
"https://www.cyberciti.biz",
"https://eat.magento.com",
"https://developer.ups.com/oauth-developer-guide"
],
skipOffline: "true"
}
],
],
};
export default remarkConfig;