eslint-plugin-ext is an ESLint plugin (version 0.1.0) that provides additional lint rules, starting with 'lines-between-object-properties' which enforces blank lines between object properties, based on eslint's built-in 'lines-between-class-members'. The rule allows standard options plus an extra 'exceptBetweenSingleLines' option. The package is minimal and likely low maintenance; it is not part of a broader ecosystem and has no recent updates. It differentiates by offering a specific rule for object literals that is missing from core ESLint.
npm install eslint-plugin-extVerified import paths — ran on the pinned version, not inferred.
Shows how to configure the plugin in .eslintrc.json and demonstrates the rule behavior with bad/good object examples.
Add 'plugins: ["ext"]' to your ESLint configuration.
Use 'ext/lines-between-object-properties' as the rule key.
Ensure this option is only used with this plugin's rule.
Use legacy .eslintrc format or check plugin documentation for flat config support.
Run 'npm install eslint-plugin-ext --save-dev' and ensure 'plugins' array uses 'ext' (without prefix).
Use 'exceptBetweenSingleLines' (note: 'single' not 'single'). Option must be inside an object as third element of the array.
Change 'plugins' to ["ext"] (omit 'eslint-plugin-' prefix).
No dependency data recorded yet.