1.0.0 • Published 4 years ago

rollup-plugin-stylelint v1.0.0

Weekly downloads
273
License
MIT
Repository
github
Last release
4 years ago

rollup-plugin-stylelint (WIP 🚧)

Verify entry point and all imported files with stylelint

Installation

npm install --save-dev rollup-plugin-stylelint stylelint

Usage

// rollup.config.js
import stylelint from 'rollup-plugin-stylelint';

export default {
  entry: './main.ts',

  plugins: [
    stylelint({
        //stylelint config
    })
  ]
}

The plugin loads linter options from the .stylelintrc file by default. Passing options to the plugin directly overrides those options.

Options

See more options here stylelint-config.

throwOnError

Type: boolean
Default: false

If true, will throw an error if any errors were found.

throwOnWarning

Type: boolean
Default: false

If true, will throw an error if any warnings were found.