An open API service indexing awesome lists of open source software.

https://github.com/supportclass/stylelint-config

Our re-usable config for the Stylelint CSS linter.
https://github.com/supportclass/stylelint-config

Last synced: 5 months ago
JSON representation

Our re-usable config for the Stylelint CSS linter.

Awesome Lists containing this project

README

          

# Support Class' stylelint-config

> Our re-usable config for the Stylelint CSS linter.

## Usage

1. Install this config as a devDependency:

```bash
npm i -D @supportclass/stylelint-config
```

2. Extend our config in your own stylelint config:

```json
{
"extends": [
"@supportclass/stylelint-config"
],
"rules": {
"indentation": "tab"
}
}
```