Generates HTML reports from Angular CLI lint JSON output (0.2.0). Supports both TSLint and ESLint outputs. No active development; last release 2021. Simpler than alternatives like angular-eslint's built-in formatter — just converts JSON to a standalone HTML file.
npm install ng-lint-reportNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Generates an HTML report from Angular lint JSON output via npm scripts.
Ensure lint command outputs valid JSON with message array; test with your Angular version.
Consider omitting --silent or checking exit code separately. Use '|| true' after lint command to continue.
If using ESLint, ensure JSON output has 'messages' array per file. Optionally switch to an ESLint-specific reporter.
Pipe lint output to file as shown; ensure file is valid JSON.
Install as dev dependency: npm install --save-dev ng-lint-report; then run via npx or npm scripts.
Ensure --jsonfile path is relative to project root or use absolute path. Example: --jsonfile ./reports/lint-results.json
Use --format json flag with ng lint; ensure no other messages printed to stdout. Remove --silent temporarily to debug.
No dependency data recorded yet.