Skip to content

Commit 3e3aae5

Browse files
committed
docs: generate docs
1 parent 154e805 commit 3e3aae5

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3372,6 +3372,33 @@ function quux () {
33723372

33733373
}
33743374
// Message: Missing JSDoc @description description.
3375+
3376+
/**
3377+
*
3378+
*/
3379+
interface quux {
3380+
3381+
}
3382+
// Options: [{"contexts":["TSInterfaceDeclaration"],"noDefaults":true}]
3383+
// Message: Missing JSDoc @description declaration.
3384+
3385+
/**
3386+
*
3387+
*/
3388+
var quux = class {
3389+
3390+
};
3391+
// Options: [{"contexts":["ClassExpression"]}]
3392+
// Message: Missing JSDoc @description declaration.
3393+
3394+
/**
3395+
*
3396+
*/
3397+
var quux = {
3398+
3399+
};
3400+
// Options: [{"contexts":["ObjectExpression"]}]
3401+
// Message: Missing JSDoc @description declaration.
33753402
````
33763403

33773404
The following patterns are not considered problems:
@@ -3426,6 +3453,27 @@ function quux () {
34263453

34273454
}
34283455
// Options: [{"exemptedBy":["type"]}]
3456+
3457+
/**
3458+
*
3459+
*/
3460+
interface quux {
3461+
3462+
}
3463+
3464+
/**
3465+
*
3466+
*/
3467+
var quux = class {
3468+
3469+
};
3470+
3471+
/**
3472+
*
3473+
*/
3474+
var quux = {
3475+
3476+
};
34293477
````
34303478

34313479

0 commit comments

Comments
 (0)