30 lines
541 B
Markdown
30 lines
541 B
Markdown
# eslint-plugin-babel-plugin
|
|
|
|
A set of eslint rules to enforce best practices in the development of Babel plugins.
|
|
|
|
## Installation
|
|
|
|
You'll first need to install [ESLint](http://eslint.org):
|
|
|
|
```
|
|
$ npm install --save-dev eslint
|
|
```
|
|
|
|
Next, install `eslint-plugin-babel-plugin`:
|
|
|
|
```
|
|
$ npm install --save-dev eslint-plugin-babel-plugin
|
|
```
|
|
|
|
Then, load the plugin in your `.eslintrc` configuration file. You can omit the `eslint-plugin-` prefix:
|
|
|
|
```json
|
|
{
|
|
"plugins": ["babel-plugin"]
|
|
}
|
|
```
|
|
|
|
## Supported Rules
|
|
|
|
* Fill in provided rules here
|