Rollup plugin to verify entry point and all imported files with ESLint.
npm i rollup-plugin-eslint -D
import { rollup } from 'rollup';
import eslint from 'rollup-plugin-eslint';
rollup({
entry: 'main.js',
plugins: [
eslint({ /* your options */ })
]
});
See more options here eslint-config.
Type: boolean
Default: false
If true, will throw an error if any warnings or errors were found.
Type: array
or string
Default: []
A single file, or array of files, to include when linting.
Type: array
or string
Default: node_modules/**
A single file, or array of files, to exclude when linting.
Type: function
or string
Default: stylish
Custom error formatter or the name of a built-in formatter.
MIT © Bogdan Chadkin