Verify entry point and all imported files with stylelint
npm install rollup-plugin-stylelint
npm install --save-dev rollup-plugin-stylelint stylelint
`
Usage
`js
// 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.
$3
Type:
boolean
Default: falseIf true, will throw an error if any errors were found.
$3
Type:
boolean
Default: false`If true, will throw an error if any warnings were found.