# eslint-config-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 src"
    },
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "devDependencies": {
        ...

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