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

https://github.com/gispada/eslint-config-cra-ts

ESLint configuration to use on a CRA project, to extend "eslint-config-react-app".
https://github.com/gispada/eslint-config-cra-ts

Last synced: 11 months ago
JSON representation

ESLint configuration to use on a CRA project, to extend "eslint-config-react-app".

Awesome Lists containing this project

README

          

# eslint-config-cra-ts

Simple ESLint configuration meant to be used on a Create React App project, to extend `eslint-config-react-app`.

It contains a few personal tweaks and alphabetically sorted imports.

In the `package.json`:
```json
{
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"cra-ts"
]
}
}
```