## Installation

  ```sh
  yarn add -D @topsoft4u/eslint-config eslint
  ```

## Usage

Now add the config to either your `package.json`:

```json
{
  "eslintConfig": {
    "extends": "@topsoft4u/eslint-config"
  }
}
```

to your `.eslintrc`:

```json
{
  "extends": "@topsoft4u/eslint-config"
}
```

or `.eslintrc.js`:

```js
module.exports = {
  extends: '@topsoft4u/eslint-config',
}
```
