0.0.8 • Published 11 months ago

stylelint-html-reporter v0.0.8

Weekly downloads
1,032
License
MIT
Repository
github
Last release
11 months ago

Stylelint HTML Reporter

Generates HTML report for stylelint

Installation

npm i -D stylelint stylelint-html-reporter

How to use?

Stylelint HTML reporter can be used as a standalone formatter. You can write a custom formatter as follows:

myCustomFormatter.js

const stylelintReporter = require("stylelint-html-reporter");

module.exports = stylelintReporter(/* Pass options object here */);

You can use it as a custom formatter:

stylelint "*.css" --custom-formatter ./myCustomFormatter.js

Options

filename - (Optional) - Name of file to be generated

const stylelintReporter = require("stylelint-html-reporter");

module.exports = stylelintReporter({
  filename: "/dist/reports/stylelint-report.html",
});