Socket
Socket
Sign inDemoInstall

@rollup/plugin-eslint

Package Overview
Dependencies
Maintainers
4
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rollup/plugin-eslint

Verify entry point and all imported files with ESLint


Version published
Weekly downloads
29K
increased by52.96%
Maintainers
4
Weekly downloads
 
Created
Source

npm size libera manifesto

@rollup/plugin-eslint

🍣 A Rollup plugin to lint entry points and all imported files with ESLint.

Install

Using npm:

npm install @rollup/plugin-eslint --save-dev
# or
yarn add -D @rollup/plugin-eslint

Usage

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 | String
Default: []

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

exclude

Type: Array | String
Default: node_modules/**

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

formatter

Type: Function | String
Default: stylish

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

Meta

CONTRIBUTING

LICENSE (MIT)

Keywords

FAQs

Package last updated on 26 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc