We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Our use of the ESLint JSDoc plugin should support all JSDoc types known by Typescript.
However, gajus/eslint-plugin-jsdoc#637 indicates that some JSDocs will be flagged with jsdoc/valid-types, so I had to add:
jsdoc/valid-types
/* eslint-disable jsdoc/valid-types */ ... /* eslint-enable jsdoc/valid-types */
to make some Typescript syntax pass (asserts ..., x is Foo, and others).
asserts ...
x is Foo
When that bug is resolved, we should remove the eslint disable/enables.
The text was updated successfully, but these errors were encountered:
michaelfig
No branches or pull requests
Our use of the ESLint JSDoc plugin should support all JSDoc types known by Typescript.
However, gajus/eslint-plugin-jsdoc#637 indicates that some JSDocs will be flagged with
jsdoc/valid-types
, so I had to add:to make some Typescript syntax pass (
asserts ...
,x is Foo
, and others).When that bug is resolved, we should remove the eslint disable/enables.
The text was updated successfully, but these errors were encountered: