1.0.4 • Published 3 years ago

@your-source/stylelint-config v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Installation

npm install @your-source/stylelint-config

Usage

Set your stylelint config to:

{
  "extends": "@your-source/stylelint-config"
}

Extending the config

Simply add a "rules" key to your config and add your overrides there.

For example, to change the indentation to tabs:

{
  "extends": "@your-source/stylelint-config",
  "rules": {
    "indentation": "tab"
  }
}