stylelint-config-typedigital
Version:
 
54 lines (37 loc) • 1.09 kB
Markdown


```shell
npm i --save-dev stylelint stylelint-config-typedigital
```
Add a .stylelintrc file with the following content to the root of your project:
```json
{
"extends": [
"stylelint-config-typedigital",
]
}
```
- stylelint
- stylelint-processor-styled-components
- stylelint-config-styled-components config to disable stylelint rules of this config that clash with styled-components
```json
{
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-typedigital",
"stylelint-config-styled-components"
]
}
```
> For further information visit [stylelint-processor-styled-components](https://github.com/styled-components/stylelint-processor-styled-components)
> _coming soon_
Unlicense