Hyoban extended ESLint rules is an ESLint plugin offering custom rules for enforcing formatting and code style conventions, currently at v0.14.1. It includes rules such as `md-one-sentence-per-line` to enforce one sentence per line in markdown paragraphs, as well as other rules for code quality. The plugin is distributed as an npm package, actively maintained with frequent releases, and it ships TypeScript type definitions. It differentiates itself by providing targeted rules for markdown layout and extending ESLint's capabilities beyond standard rule sets.
npm install eslint-plugin-hyobanVerified import paths — ran on the pinned version, not inferred.
Configures ESLint to use the hyoban plugin and enables the md-one-sentence-per-line rule.
Use the `ignorePatterns` option added in v0.14.1 to exclude specific paragraphs or elements.
Always reference the latest documentation for rule names and options.
Use `import hyoban from 'eslint-plugin-hyoban';` then `plugins: { hyoban }` in flat config.Run: `npm install eslint-plugin-hyoban --save-dev`
Upgrade to >=0.14.1: `npm install eslint-plugin-hyoban@latest --save-dev`
Use `import hyoban from 'eslint-plugin-hyoban';`