1. rollup-plugin-eslint
Verify entry point and all imported files with ESLint
rollup-plugin-eslint
Package: rollup-plugin-eslint
Created by: TrySound
Last modified: Sun, 26 Jun 2022 13:58:46 GMT
Version: 7.0.0
License: MIT
Downloads: 29,512
Repository: https://github.com/TrySound/rollup-plugin-eslint

Install

npm install rollup-plugin-eslint
yarn add rollup-plugin-eslint

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

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code