Registry / devops / eslint-formatter-dashboard-exporter

eslint-formatter-dashboard-exporter

JSON →
library0.0.3jsnpmunverified

An ESLint formatter that transforms linting results into a structured JSON output grouped by date and rule ID, intended for use with an ESLint dashboard. Version 0.0.3 is the initial release with minimal documentation. It is a niche formatter for developers building custom ESLint dashboards, with no active maintenance since first publish.

npm install eslint-formatter-dashboard-exporter
INSTALL
IMPORT
SIG · ESLINT-FORMATTER-D
E
eslint-formatter-dashboard-exporter
devopsjavascriptv0.0.3
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

default
import exporter from 'eslint-formatter-dashboard-exporter'
const exporter = require('eslint-formatter-dashboard-exporter')
The package is ESM-only as of v0.0.3; CommonJS require will fail.
exporter
import * as exporter from 'eslint-formatter-dashboard-exporter'
Namespace import may be used if the package exports multiple functions, but only a default export exists.
ESLintFormatter
import { ESLintFormatter } from 'eslint-formatter-dashboard-exporter'
Named export does exist for type usage in TypeScript, but there is no named export at runtime; only default export works.

Shows how to install the formatter and run ESLint with it, displaying the JSON output structure grouped by date.

// Install: npm install eslint-formatter-dashboard-exporter --save-dev // Run ESLint with the formatter $ eslint --format dashboard-exporter src // Example output: { "2022-08-25": { "no-unused-vars": [ "eslint-dashboard-ui/src/components/dashboard.js", "eslint-dashboard-ui/src/components/rule.js" ], "no-prototype-builtins": [ "eslint-dashboard-ui/src/components/dashboard.js" ] } }
Debug
Known issues
deprecatedPackage is unmaintained with only one release (0.0.3).
fix
Consider using a more widely adopted ESLint formatter like 'eslint-formatter-codeframe' or build a custom formatter.
affects: >=0.0
breakingThe output format may change without notice; no versioning guarantee.
fix
Pin the version in package.json to avoid unexpected changes.
affects: 0.0.3
gotchaRequires ESLint v7+ but not specified; may break with older versions.
fix
Use ESLint v7 or newer.
affects: any
Errors
Common errors & fixes
Cannot find module 'eslint-formatter-dashboard-exporter'
Package not installed or not installed as devDependency.
fix
Run: npm install eslint-formatter-dashboard-exporter --save-dev
Error: Cannot find module 'eslint-formatter-dashboard-exporter'
Missing or incorrect path when using --format.
fix
Ensure the formatter package is installed and use: eslint --format dashboard-exporter src
Upgrade
Version history
0.0.3latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
eslint-formatter-dashboard-exporter — npm install eslint-formatter-dashboard-exporter · libregistry