Skip to content

banyudu/eslint-plugin-export

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published