eslint-plugin-export

0.1.2 • Public • Published

eslint-plugin-export

ESLint plugin for exports

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-export:

$ npm install eslint-plugin-export --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-export globally.

Usage

Add export to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "export"
    ]
}

Then configure the rules you want to use under the rules section.

{
    "rules": {
        "export/no-import-module-exports": "error"
    }
}

Supported Rules

  • export/no-import-module-exports Should not use module.exports or export.xxx when there are import sentences

Package Sidebar

Install

npm i eslint-plugin-export

Weekly Downloads

584

Version

0.1.2

License

ISC

Unpacked Size

7.99 kB

Total Files

7

Last publish

Collaborators

  • banyudu