Skip to content

Commit

Permalink
Merge pull request #91 from lucasrmendonca/patch-6
Browse files Browse the repository at this point in the history
fix: #49 Allow @jest-environment tag names for jsdoc config
  • Loading branch information
gajus authored Sep 9, 2024
2 parents d0e3f30 + 5a7f4e6 commit 41bc320
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion configurations/jsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ module.exports.recommended = {
'jsdoc/check-param-names': 2,
'jsdoc/check-property-names': 2,
'jsdoc/check-syntax': 2,
'jsdoc/check-tag-names': 2,
'jsdoc/check-tag-names': [
2,
{
definedTags: ['jest-environment', 'jest-environment-options'],
},
],
'jsdoc/check-types': 2,
'jsdoc/check-values': 2,
'jsdoc/empty-tags': 2,
Expand Down

0 comments on commit 41bc320

Please sign in to comment.