eslint-config-seegno
Version:
Seegno-flavored ESLint config
34 lines (23 loc) • 390 B
Markdown
# eslint-config-seegno
Seegno-flavored ESLint config.
## Installation
```sh
$ npm install eslint eslint-config-seegno --save-dev
```
## Usage
Create an `.eslintrc.yml` file with the following:
```yaml
extends: seegno
```
Add the following `script` to your `package.json`:
```json
{
"scripts": {
"lint": "eslint ."
}
}
```
and run the linter with:
```sh
$ npm run lint
```