# eslint-config-react-ts-prettier

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-prettier"
    },
    "devDependencies": {
        ...

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