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
Error on comment: "This description only repeats the name it describes"
No error.
Deleting the export keyword provides the correct error.
// Format JS (or JSON) code here ```json { "parser": "@typescript-eslint/parser", "parserOptions": { "warnOnUnsupportedTypeScriptVersion": false, "ecmaVersion": 6, "sourceType": "module" }, "env": { "browser": false, "node": true, "es6": true }, "plugins": [ "jsdoc" ], "rules": { "jsdoc/informative-docs": "error" } }
Note: this is typescript but I removed the types so it should parse the same as JS.
/** * package name from path */ export function packageNameFromPath(path) { const base = basename(path); return /^v\d+(\.\d+)?$/.exec(base) || /^ts\d\.\d/.exec(base) ? basename(dirname(path)) : base; }
eslint-plugin-jsdoc
The text was updated successfully, but these errors were encountered:
fix(informative-docs): check named export declarations: fixes gajus#1198
b33c713
fix(informative-docs): check named export declarations: fixes #1198
5a79d3f
🎉 This issue has been resolved in version 48.0.6 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected behavior
Error on comment: "This description only repeats the name it describes"
Actual behavior
No error.
Deleting the export keyword provides the correct error.
ESLint Config
ESLint sample
Note: this is typescript but I removed the types so it should parse the same as JS.
Environment
eslint-plugin-jsdoc
version: 48.0.5The text was updated successfully, but these errors were encountered: