https://github.com/hyperonecom/eslint-config-hyperone
https://github.com/hyperonecom/eslint-config-hyperone
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hyperonecom/eslint-config-hyperone
- Owner: hyperonecom
- Created: 2018-07-10T12:15:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T17:43:51.000Z (over 3 years ago)
- Last Synced: 2025-01-21T01:16:06.351Z (4 months ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eslint-config-hyperone
eslint rules for hyperone
## how to use
install dependencies
```sh
npm install eslint --save-dev
npm install @hyperone/eslint-config --save-dev
```add to your .eslintrc
```
extends: '@hyperone'
```or use package.json
```json
"eslintConfig": {
"extends": [
"@hyperone"
]
},
"scripts": {
"lint": "eslint .",
"fmt": "eslint . --fix"
},
```