forked from AdobeDocs/commerce-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.remarkrc.mjs
More file actions
32 lines (31 loc) · 743 Bytes
/
.remarkrc.mjs
File metadata and controls
32 lines (31 loc) · 743 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
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: [
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.adobe.com/legal/",
"https://business.adobe.com" ]
}
],
],
};
export default remarkConfig;