Skip to content

Commit 3d92055

Browse files
committed
fix: allow @internal JSDoc tag
1 parent f2b0dd6 commit 3d92055

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.eslintrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ module.exports = {
125125
'jsdoc/require-jsdoc': 'off',
126126
'jsdoc/require-param': 'off',
127127
'jsdoc/no-bad-blocks': 'error',
128+
'jsdoc/check-tag-names': [
129+
'error',
130+
{
131+
definedTags: [
132+
'internal', // Used by typedoc
133+
],
134+
},
135+
],
128136

129137
// Rules for React
130138
'react-hooks/exhaustive-deps': 'error',

0 commit comments

Comments
 (0)