diff --git a/src/rules/checkExamples.js b/src/rules/checkExamples.js index 60d493df7..74d197b46 100644 --- a/src/rules/checkExamples.js +++ b/src/rules/checkExamples.js @@ -94,6 +94,9 @@ export default iterateJsdoc(({ // Snippets likely too short to always include import/export info 'import/unambiguous': 0, + // The end of a multiline comment would end the comment the example is in. + 'jsdoc/require-jsdoc': 0, + // Unlikely to have inadvertent debugging within examples 'no-console': 0,