A minimal ESLint custom formatter (reporter) that displays a single summary line for all files processed. Version 1.0.0 (stable) — no known regular release cadence; appears to be a single release. Unlike verbose formatters, it shows only the count of files processed, files passed, and total warnings/errors, making it suitable for quick status checks in CI or Git hooks. It requires ESLint 0.18.0+ and has no additional dependencies.
npm install eslint-summaryVerified import paths — ran on the pinned version, not inferred.
Installs the formatter and runs ESLint with summary output on all files in the current directory.
Use built-in ESLint formatters like 'compact' or switch to a maintained alternative.
Use a different formatter like 'eslint-friendly-formatter' or 'eslint-formatter-pretty' for detailed output.
Ensure the package is installed in node_modules and specify the full path: --format node_modules/eslint-summary/summary.js
Upgrade to a maintained formatter or use ESLint's built-in compact formatter.