# eslint-config-react-ts

This package includes the shareable ESLint configuration to be used by Orchard typescript react projects.

## How to use

Modify your package.json to contain the following parts:

```json
{
    ...

    "scripts":{
        ...

        "lint:js": "eslint --ext .js,.ts,.tsx,.jsx src"
    },
    "eslintConfig": {
        "extends": "@theorchard/react-ts"
    },
    "devDependencies": {
        ...

        "@theorchard/eslint-config-react-ts": "1.0.2"
    }
}
```
