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
This should not report:
export type SomeType = /** * 🍏 fruit. */ | Apple /** * 🍌 fruit. */ | Banana;
Required 1 line(s) before JSDoc blockeslint[jsdoc/lines-before-block](https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/lines-before-block.md#repos-sticky-header)
import jsdoc from 'eslint-plugin-jsdoc'; export default [jsdoc.configs['flat/recommended']];
I'd fixed this bug/feature for blocks in #1341, but didn't think to for union or intersection types.
The autofix puts a blank line before the JSDoc block. Prettier removes that blank line. Fun.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behavior
This should not report:
Actual behavior
ESLint Config
Additional info
I'd fixed this bug/feature for blocks in #1341, but didn't think to for union or intersection types.
The autofix puts a blank line before the JSDoc block. Prettier removes that blank line. Fun.
The text was updated successfully, but these errors were encountered: