https://github.com/kyeotic/eslint-config
My personal eslint configurations
https://github.com/kyeotic/eslint-config
Last synced: 5 months ago
JSON representation
My personal eslint configurations
- Host: GitHub
- URL: https://github.com/kyeotic/eslint-config
- Owner: kyeotic
- License: unlicense
- Created: 2019-05-25T22:12:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T22:38:57.000Z (over 2 years ago)
- Last Synced: 2025-02-12T14:59:48.025Z (5 months ago)
- Language: JavaScript
- Size: 625 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config
My personal eslint configurations
## Installation
```shell
npm install @kyeotic/eslint-config eslint-plugin-react # peer deps must be installed
```# Use for Browsers
```
"eslintConfig": {
"extends": [
"@kyeotic/eslint-config"
]
}
```# Use in Node
Add this to your `package.json`
```
"eslintConfig": {
"extends": [
"@kyeotic/eslint-config/node"
]
}
```# Recommended Prettier Config
Add this to your `package.json`
```
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
```