An ESLint formatter that enriches linting results with Git metadata (author, date, hash). Version 0.6.4 is the latest stable release, with maintenance releases as needed. It integrates seamlessly with ESLint's --format flag and supports filtering by committer email, making it ideal for CI and team workflows. Unlike standard formatters, it provides a direct link to the git annotate for each warning or error.
npm install eslint-formatter-git-logNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Custom ESLint formatter that filters results by committer email regex.
Use require() instead of import.
Include the `i` flag in the regex: /pattern/i
Upgrade ESLint to >=8.0.0
const gitLogFormatter = require('eslint-formatter-git-log');npm install --save-dev eslint eslint-formatter-git-log
npm install chalk --save-dev