Skip to content

Rollup plugin to verify entry point and all imported files with ESLint.

License

Notifications You must be signed in to change notification settings

git-jiby-me/rollup-plugin-eslint

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rollup-plugin-eslint Travis Build Status

Rollup plugin to verify entry point and all imported files with ESLint.

Install

npm i rollup-plugin-eslint -D

Usage

import { rollup } from 'rollup';
import eslint from 'rollup-plugin-eslint';

rollup({
    entry: 'main.js',
    plugins: [
        eslint({ /* your options */ })
    ]
});

Options

See more options here eslint-config.

throwError

Type: boolean
Default: false

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

include

Type: array or string
Default: []

A single file, or array of files, to include when linting.

exclude

Type: array or string
Default: node_modules/**

A single file, or array of files, to exclude when linting.

formatter

Type: function or string
Default: stylish

Custom error formatter or the name of a built-in formatter.

License

MIT © Bogdan Chadkin

About

Rollup plugin to verify entry point and all imported files with ESLint.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%