We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ac5da commit 892c78cCopy full SHA for 892c78c
.markdownlintignore
@@ -1 +1,3 @@
1
node_modules
2
+src/content/loaders/_*.mdx
3
+src/content/plugins/_*.mdx
eslint.config.mjs
@@ -43,7 +43,7 @@ export default [
43
...globals.browser,
44
...globals.node,
45
...globals.jest,
46
- ...cypress.environments.globals.globals,
+ ...cypress.configs.globals.languageOptions.globals,
47
},
48
49
parser: babelParser,
@@ -82,6 +82,14 @@ export default [
82
})),
83
{
84
files: ['**/*.mdx'],
85
+ ignores: [
86
+ '**/dist/',
87
+ '**/examples/',
88
+ 'src/content/loaders/_*.mdx',
89
+ 'src/content/plugins/_*.mdx',
90
+ '.github/**/*.md',
91
+ '**/README.md',
92
+ ],
93
94
languageOptions: {
95
globals: {
0 commit comments