https://github.com/banyudu/eslint-plugin-export
https://github.com/banyudu/eslint-plugin-export
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/banyudu/eslint-plugin-export
- Owner: banyudu
- License: mit
- Created: 2020-03-14T14:01:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T14:24:43.000Z (about 2 years ago)
- Last Synced: 2024-12-31T08:30:50.671Z (5 months ago)
- Language: JavaScript
- Size: 178 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-plugin-export
ESLint plugin for exports
## Installation
You'll first need to install [ESLint](http://eslint.org):
```
$ 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:
```json
{
"plugins": [
"export"
]
}
```Then configure the rules you want to use under the rules section.
```json
{
"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