Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Feb 24, 2019
1 parent 3a6d773 commit 4bd096a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rules/checkExamples.js
Expand Up @@ -62,7 +62,7 @@ export default iterateJsdoc(({
exampleCodeRegex = exampleCodeRegex && new RegExp(exampleCodeRegex, '');
rejectExampleCodeRegex = rejectExampleCodeRegex && new RegExp(rejectExampleCodeRegex, '');

_.forEach(jsdoc.tags, (tag) => { // eslint-disable-line complexity
_.forEach(jsdoc.tags, (tag) => {
if (tag.tag !== 'example') {
return;
}
Expand Down

0 comments on commit 4bd096a

Please sign in to comment.