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".
- Host: GitHub
- URL: https://github.com/gispada/eslint-config-cra-ts
- Owner: gispada
- Created: 2022-03-27T17:45:46.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-09T13:35:20.000Z (about 4 years ago)
- Last Synced: 2025-03-27T16:50:53.912Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 85 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
]
}
}
```