File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1227,7 +1227,7 @@ function quux (foo) {
1227
1227
}
1228
1228
// Settings: {"jsdoc":{"additionalTagNames":{"customTags":["baz","bar"]}}}
1229
1229
1230
- /**
1230
+ /**
1231
1231
* @abstract
1232
1232
* @access
1233
1233
* @alias
@@ -4635,14 +4635,15 @@ const quux = async function () {}
4635
4635
/**
4636
4636
*
4637
4637
*/
4638
- const quux = async () => {}
4638
+ async function quux () {
4639
+ }
4639
4640
// Settings: {"jsdoc":{"forceRequireReturn":true}}
4640
4641
// Message: Missing JSDoc @returns declaration.
4641
4642
4642
4643
/**
4643
4644
*
4644
4645
*/
4645
- async function quux () {
4646
+ function quux () {
4646
4647
}
4647
4648
// Settings: {"jsdoc":{"forceReturnsWithAsync":true}}
4648
4649
// Message: Missing JSDoc @returns declaration.
@@ -5024,7 +5025,7 @@ function quux() {
5024
5025
5025
5026
}
5026
5027
// Settings: {"jsdoc":{"allowEmptyNamepaths":false}}
5027
- // Message: Syntax error in type:
5028
+ // Message: Syntax error in type:
5028
5029
````
5029
5030
5030
5031
The following patterns are not considered problems:
You can’t perform that action at this time.
0 commit comments