File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -3372,6 +3372,33 @@ function quux () {
3372
3372
3373
3373
}
3374
3374
// 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.
3375
3402
````
3376
3403
3377
3404
The following patterns are not considered problems:
@@ -3426,6 +3453,27 @@ function quux () {
3426
3453
3427
3454
}
3428
3455
// 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
+ };
3429
3477
````
3430
3478
3431
3479
You can’t perform that action at this time.
0 commit comments