# stylelint-config

This package includes the shareable stylelint configuration to be used by Orchard front end projects.

## How to use

Modify your package.json to contain the following parts:

```json
{
    ...

    "scripts":{
        ...

        "lint:css": "stylelint 'src/**/*.scss'"
    },
    "stylelint": {
        "extends": "@theorchard/stylelint-config"
    },
    "devDependencies": {
        ...

        "@theorchard/stylelint-config": "1.0.0",
        "stylelint": "^14.0.0"
    }
}
```
