rollup-plugin-eslint
Verify entry point and all imported files with ESLint
Last updated 8 years ago by trysound .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install rollup-plugin-eslint 
SYNC missed versions from official npm registry.

rollup-plugin-eslint Travis Build Status

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

Install

yarn add rollup-plugin-eslint --dev

Usage

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

export default {
  input: "main.js",
  plugins: [
    eslint({
      /* your options */
    })
  ]
};

Options

See more options here eslint-config.

You can also use eslint configuration in the form of a .eslintrc.* file in your project's root. It will be loaded automatically.

fix

Type: boolean
Default: false

If true, will auto fix source code.

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.

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

Current Tags

  • 7.0.0                                ...           latest (5 years ago)

12 Versions

  • 7.0.0                                ...           5 years ago
  • 6.0.0                                ...           5 years ago
  • 5.1.0                                ...           6 years ago
  • 5.0.0                                ...           6 years ago
  • 4.0.0                                ...           7 years ago
  • 3.0.0                                ...           8 years ago
  • 2.0.2                                ...           8 years ago
  • 2.0.1                                ...           8 years ago
  • 2.0.0                                ...           9 years ago
  • 1.0.2                                ...           9 years ago
  • 1.0.1                                ...           9 years ago
  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Total 12
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 12
Dependencies (2)
Dev Dependencies (5)
Dependents (0)
None

© 2010 - cnpmjs.org x YWFE | Home | YWFE