Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Eslint config
https://github.com/emgyrz/eslint-config

Last synced: 8 days ago
JSON representation

Eslint config

Awesome Lists containing this project

README

        

# @emgyrz/eslint-config

### Install
```shell
npm i @emgyrz/eslint-config
```

### Using

Extends from all rules
```javascript
// .eslintrc.js
{
// ...
extends: [ '@emgyrz' ]
// ...
}
```
---
Extends from specific rules
```javascript
// .eslintrc.js
{
// ...
extends: [
'@emgyrz/eslint-config/base',
'@emgyrz/eslint-config/spacing'
],
// ...
}
```