@exodus/eslint-config-typescript-react
v2.0.0
Published
Eslint config for typescript projects with react
Downloads
47
Maintainers
Keywords
Readme
@exodus/eslint-config-javascript-babel
Use
yarn add --dev @exodus/eslint-config-typescript
and the snippet below to initialize your .eslintrc.js
// .eslintrc.js
module.exports = {
overrides: [
{
files: ['*.{ts,tsx}'],
extends: ['@exodus/eslint-config-typescript-react'],
},
{
files: ['*.{js,jsx}'],
extends: ['@exodus/eslint-config-typescript-react'],
},
],
}