An open API service indexing awesome lists of open source software.

https://github.com/marknjunge/eslint-config

My eslint configuration
https://github.com/marknjunge/eslint-config

Last synced: 8 days ago
JSON representation

My eslint configuration

Awesome Lists containing this project

README

          

# @marknjunge/eslint-config

[![npm (scoped)](https://img.shields.io/npm/v/@marknjunge/eslint-config)](https://www.npmjs.com/package/@marknjunge/eslint-config)

My ESLint config

## Usage

Install the package

```
npm install --save-dev @marknjunge/eslint-config
```

Add it to the `extends` section of your `.eslintrc` file.

```javascript
extends: ["...", "@marknjunge/eslint-config"]
```

Add the following helpful scripts

```json
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix"
```