0.1.2 • Published 5 years ago
eslint-plugin-export v0.1.2
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