@crowdhouse/eslint-config-typescript
v4.4.1
Published
Shared ESLint configuration for typescript apps
Downloads
2,497
Maintainers
Keywords
Readme
eslint-config-typescript
Eslint configuration to use in typescript or mixed typescript/javascript projects
Add to your project
npm i -D @crowdhouse/eslint-config-typescript
To use in typescript based projects
Add .eslintrc with content:
{
"extends": [
"@crowdhouse/eslint-config-typescript"
]
}
To use in react-scripts based projects
Adjust eslintConfig
section in package.json:
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"@crowdhouse/eslint-config-typescript/base"
]
},