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

https://github.com/schulzetenberg/eslint-config-react

Custom eslint config enforcing airbnb, typescript, react & prettier rules
https://github.com/schulzetenberg/eslint-config-react

Last synced: 11 months ago
JSON representation

Custom eslint config enforcing airbnb, typescript, react & prettier rules

Awesome Lists containing this project

README

          

# eslint-config-react
Custom eslint config enforcing Airbnb, Typescript, React & Prettier rules

### Install
`
$ npm i --dev @schulzetenberg/eslint-config-react
`

### Enable ESLint on TS files in VSCode
Add the following to settings.json:

`
"eslint.validate": [
"javascript",
"javascriptreact",
{
"autoFix": true,
"language": "typescript"
},
{
"autoFix": true,
"language": "typescriptreact"
}
]
`