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
- Host: GitHub
- URL: https://github.com/schulzetenberg/eslint-config-react
- Owner: schulzetenberg
- Created: 2019-10-09T20:35:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-04T02:21:32.000Z (over 3 years ago)
- Last Synced: 2025-06-15T06:49:44.415Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@schulzetenberg/eslint-config-react
- Size: 616 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
]
`