We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In src/test.js:
src/test.js
const foo = { bar: () => {} } /** A baz. */ class Baz {}
Running documentation lint src results in this warning:
documentation lint src
5:1 warning could not determine @name for hierarchy
The warning goes away if you add a semicolon:
const foo = { bar: () => {} - } + }; /** A baz. */ class Baz {}
The same thing for class properties:
/** An A. */ class A { b = { c: '' - } + }; /** Does d. */ d() { } }
The text was updated successfully, but these errors were encountered:
This bug can also create these warnings:
warning @memberof reference to A not found
Sorry, something went wrong.
Looks like a similar issue to #795.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
In
src/test.js
:Running
documentation lint src
results in this warning:The warning goes away if you add a semicolon:
The same thing for class properties:
The text was updated successfully, but these errors were encountered: