Skip to content
This repository has been archived by the owner on Nov 19, 2019. It is now read-only.

Commit

Permalink
fix: customTags > definedTags
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewLeedham committed Jul 11, 2019
1 parent ba9403c commit dce3291
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ module.exports = {
],
'jsdoc/check-examples': 'warn',
'jsdoc/check-param-names': 'error',
'jsdoc/check-tag-names': 'error',
'jsdoc/check-tag-names': [
'error',
{
definedTags: ['remarks']
}
],
'jsdoc/check-types': 'warn',
'jsdoc/newline-after-description': 'error',
'jsdoc/no-undefined-types': 'off',
Expand Down Expand Up @@ -81,12 +86,5 @@ module.exports = {
]
}
}
],
settings: {
jsdoc: {
additionalTagNames: {
customTags: ['remarks']
}
}
}
]
};

0 comments on commit dce3291

Please sign in to comment.