1.3.0 • Published 10 months ago

@emble/stylelint-config v1.3.0

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Installation

npm install @emble/stylelint-config

Usage

Set your stylelint config to:

{
  "extends": "@emble/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": "@emble/stylelint-config",
  "rules": {
    "indentation": "tab"
  }
}