File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,11 @@ module.exports = {
21
21
// Only lint the English pages because the Markdown for the other languages is auto-generated from English (via Crowdin).
22
22
// But include all languages when running the ESLint extension in VS Code (in case the user has "eslint.validate": ["mdx"]),
23
23
// otherwise there will be random errors since the non-English files don't match any ruleset.
24
- files : [ `website/pages/${ ! isVSCode ? 'en/' : '' } **/*.{md,mdx}` ] ,
24
+ files : [ `website/pages/${ isVSCode ? '' : 'en/' } **/*.{md,mdx}` ] ,
25
+ excludedFiles : [
26
+ `website/pages/${ isVSCode ? '' : 'en/' } developing/graph-ts/*.md` ,
27
+ `website/pages/${ isVSCode ? '' : 'en/' } querying/graph-client/*.md` ,
28
+ ] ,
25
29
parser : 'eslint-mdx' ,
26
30
processor : 'mdx/remark' ,
27
31
plugins : [ 'mdx' ] ,
You can’t perform that action at this time.
0 commit comments