Compare Similar npm Packages
stylelint-config-recommended-scss vs stylelint-config-sass-guidelines vs stylelint-config-sass-guidelines
1 Year
stylelint-config-recommended-scssstylelint-config-sass-guidelinesstylelint-config-sass-guidelinesSimilar Packages:
Package Weekly Downloads Trend
Github Stars Ranking
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
stylelint-config-recommended-scss1,937,1262335.89 kB117 months agoMIT
stylelint-config-sass-guidelines322,99744619.9 kB55 months agoMIT
stylelint-config-sass-guidelines322,99744619.9 kB55 months agoMIT
README for stylelint-config-recommended-scss

stylelint-config-recommended-scss

npm version Build Status contributions welcome Downloads per month

The recommended shareable SCSS config for Stylelint.

This config:

This config is extended by the stylelint-config-standard-scss shared config. That config is better suited to most users as it also turns on the stylistic rules in the stylelint-scss plugin pack.

To see the rules that this config uses, please read the config itself.

Installation

npm install --save-dev stylelint-config-recommended-scss

Usage

Set your stylelint config to:

{
  "extends": "stylelint-config-recommended-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 scss/at-if-no-null rule:

{
  "extends": "stylelint-config-recommended-scss",
  "rules": {
    "scss/at-if-no-null": null
  }
}

Changelog

License