ESLint strong (strict) config for React and React Native development.
yarn add -D eslint eslint-config-react-strongnpm install --save-dev eslint eslint-config-react-strongAdd "react-strong" to the "extends" array in your .eslintrc.* file. Make sure to put it last, so it gets the chance to override other configs.
{
"extends": [
"...",
"react-strong"
]
}