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.
- Host: GitHub
- URL: https://github.com/supportclass/stylelint-config
- Owner: SupportClass
- License: mit
- Created: 2019-04-22T01:14:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-22T01:37:14.000Z (almost 7 years ago)
- Last Synced: 2025-08-16T03:34:21.067Z (5 months ago)
- Language: JavaScript
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
```