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

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

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
},
```