@code-expert/eslint-config-typescript-react
v0.5.8
Published
CodeExpertETH eslint config for TypeScript and React.js
Downloads
186
Readme
Personal configs
Credit: Forked from ntnyq
EsLint config for React.js and TypeScript
Usage
Install
$ npm i @code-expert/eslint-config-typescript-react -D
# OR
$ yarn add @code-expert/eslint-config-typescript-react -D
Extend this config
in .eslintrc.js
module.exports = {
root: true,
extends: ['@code-expert/typescript-react'],
rules: {
// Override rules
},
}
in package.json
{
"eslintConfig": {
"root": true,
"extends": "@code-expert/typescript-react"
}
}