1.15.10 • Published 1 year ago

stylelint-config-lcy v1.15.10

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

stylelint-config-lcy

Installation

npm install --save-dev stylelint-config-lcy

Usage

Set your stylelint config to:

{
  "extends": "stylelint-config-lcy"
}

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/dollar-variable-pattern rule:

{
  "extends": "stylelint-config-lcy",
  "rules": {
    "scss/dollar-variable-pattern": null
  }
}