You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/eslint/rules/jsdoc-format.cjs
+32-3Lines changed: 32 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ module.exports = createRule({
11
11
internalCommentNotLastError: `@internal should only appear in final JSDoc comment for declaration.`,
12
12
multipleJSDocError: `Declaration has multiple JSDoc comments.`,
13
13
internalCommentOnParameterProperty: `@internal cannot appear on a JSDoc comment; use a declared property and an assignment in the constructor instead.`,
14
+
internalCommentOnUnexported: `@internal should not appear on an unexported declaration.`,
0 commit comments