https://github.com/shelldandy/stylelint-config-timmy-scss
Scss config recommendations from Timothy Burger
https://github.com/shelldandy/stylelint-config-timmy-scss
Last synced: 5 months ago
JSON representation
Scss config recommendations from Timothy Burger
- Host: GitHub
- URL: https://github.com/shelldandy/stylelint-config-timmy-scss
- Owner: shelldandy
- License: mit
- Created: 2017-11-26T20:41:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-10T07:30:28.000Z (over 8 years ago)
- Last Synced: 2025-02-15T18:53:24.744Z (over 1 year ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stylelint-config-timmy-scss

Scss config recommendations from Timothy Burger
Your standard every day bro sass stylelint configuration:
## Instalation
```bash
npm install stylelint stylelint-config-timmy-scss --save-dev
```
## Usage
Just set your stylelint config to:
```json
{
"extends": "stylelint-config-timmy-scss"
}
```
### Extending the config
Simply add a `"rules"` key to your config, then add your overrides and additions there.
For example, to turn off the `block-no-empty` rule, and add the `unit-whitelist` rule:
```json
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"block-no-empty": null,
"unit-whitelist": ["em", "rem", "s"]
}
}
```