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 cac3b9c commit 0b5ce18Copy full SHA for 0b5ce18
.eslintrc.js
@@ -315,6 +315,7 @@ module.exports = {
315
},
316
317
{
318
+ // **/*.md/*.js references code blocks inside markdown files
319
files: ['**/*.md/*.js'],
320
rules: {
321
'no-undef': 0,
@@ -330,6 +331,11 @@ module.exports = {
330
331
strict: 0,
332
'import/no-unresolved': 0,
333
'node/no-missing-require': 0,
334
+
335
+ // code blocks in markdown files have autogenerated file names
336
+ 'unicorn/filename-case': 0,
337
338
+ 'node/no-unpublished-require': 0,
339
340
341
],
0 commit comments