# eslint-config-ts

This package includes the shareable ESLint configuration to be used by Orchard typescript 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/ts"
    },
    "devDependencies": {
        ...

        "@theorchard/eslint-config-ts": "1.0.5"
    }
}
```
