Skip to content

Commit 892c78c

Browse files
committed
chore: fix lint
1 parent 08ac5da commit 892c78c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.markdownlintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules
2+
src/content/loaders/_*.mdx
3+
src/content/plugins/_*.mdx

eslint.config.mjs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default [
4343
...globals.browser,
4444
...globals.node,
4545
...globals.jest,
46-
...cypress.environments.globals.globals,
46+
...cypress.configs.globals.languageOptions.globals,
4747
},
4848

4949
parser: babelParser,
@@ -82,6 +82,14 @@ export default [
8282
})),
8383
{
8484
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+
],
8593

8694
languageOptions: {
8795
globals: {

0 commit comments

Comments
 (0)