Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emgyrz/eslint-config
Eslint config
https://github.com/emgyrz/eslint-config
Last synced: 8 days ago
JSON representation
Eslint config
- Host: GitHub
- URL: https://github.com/emgyrz/eslint-config
- Owner: emgyrz
- Created: 2022-09-13T21:02:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T16:56:06.000Z (over 2 years ago)
- Last Synced: 2024-12-27T07:06:45.016Z (15 days ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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'
],
// ...
}
```