eslint-simple-formatter (v1.0.1) provides a clean, minimal output for ESLint results. It is a simple formatter that reduces noise by displaying only essential lint information. With no dependencies and minimal configuration, it serves as a lightweight alternative to built-in or more complex formatters. The package appears to be a single-function formatter usable via ESLint's --format flag. No release cadence is documented; it is a small utility. Key differentiators: zero dependencies, trivial setup.
npm install eslint-simple-formatterNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows installation, CLI usage, and programmatic usage of the formatter using ESM.
This is by design; it's a 'simple' formatter. Use another formatter if you need full details.
Ensure input is the standard ESLint LintResult array.
Call formatter only with the results array: formatter(results)
Run 'npm install --save-dev eslint-simple-formatter'
Use dynamic import: import('eslint-simple-formatter') or set 'type': 'module' in package.json.Use const formatter = require('eslint-simple-formatter').default;No dependency data recorded yet.