generated from AdobeDocs/dev-site-documentation-template
-
Notifications
You must be signed in to change notification settings - Fork 41
/
.remarkrc.mjs
37 lines (36 loc) · 861 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
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://business.adobe.com',
'https://magento.com',
'https://www.adobe.com'
]
}
]
],
};
export default remarkConfig;