A CLI tool (v0.0.11, low-activity) that filters linter output by blaming lines to specific authors or dates, enabling incremental adoption of new lint rules without rewriting the entire codebase. It pipes linter output (e.g., TSLint) and parses complaint formats (tslint4, tslint5, tsconfig), then uses git blame to retain only those lines matching a set of members or a since date. Unmaintained since 2020, no updates for Node >=10+ compatibility issues.
npm install lint-blameNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates filtering TSLint output by date and author using lint-blame programmatically.
Run the tool from within a git repository.
Use lint-staged or eslint-filtered-files instead for modern linting.
Ensure each member object includes both 'name' and 'email'.
Use shell redirection: cat lint-output.txt | lint-blame ...
npm install lint-blame
Verify the --format flag matches your linter output (tslint4/tslint5/tsconfig).
Change to a git repository directory or initialize one with 'git init'.
No dependency data recorded yet.