https://github.com/justforuse/oxlint-html-reporter
Generate beautiful HTML reports from oxlint output
https://github.com/justforuse/oxlint-html-reporter
html-reporter oxc oxlint
Last synced: 20 days ago
JSON representation
Generate beautiful HTML reports from oxlint output
- Host: GitHub
- URL: https://github.com/justforuse/oxlint-html-reporter
- Owner: justforuse
- License: mit
- Created: 2025-01-20T09:15:07.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-20T09:45:24.000Z (about 1 year ago)
- Last Synced: 2025-10-06T04:54:39.262Z (5 months ago)
- Topics: html-reporter, oxc, oxlint
- Language: TypeScript
- Homepage:
- Size: 332 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oxlint-html-reporter
Generate beautiful HTML reports from oxlint output.

## Installation
```bash
npm install -g oxlint-html-reporter
```
## Usage
Pipe oxlint JSON output directly to oxlint-html:
```bash
npx oxlint -f=json | oxlint-html
```
This will create `oxlint-report.html` in the current directory. You can specify a different output file:
```bash
npx oxlint -f=json | oxlint-html custom-report.html
```
## Programmatic Usage
```javascript
import { generateReport } from 'oxlint-html-reporter';
await generateReport('input.json', 'output.html');
```
## Features
- Beautiful, modern UI using Tailwind CSS
- Summary statistics
- Detailed error and warning information
- File locations and code references
- Responsive design
- Zero dependencies for the HTML output
## License
MIT