@topsoft4u/eslint-config
Version:
ESLint and perhaps others in future
34 lines (25 loc) • 391 B
Markdown
## 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',
}
```