0.2.0 • Published 7 years ago

@savvy-css/stylelint-config-savvy v0.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Stylelint Config Savvy

Stylelint Configuration for Savvy CSS

Installation

With yarn:

yarn add --dev @savvy-css/stylelint-config-savvy

With npm:

npm install --save-dev @savvy-css/stylelint-config-savvy

Usage

Simply extend this configuration your own Stylelint configuration:

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

Extending the config

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

For example, to change the indentation to tabs and turn off the number-leading-zero rule:

{
  "extends": "stylelint-config-suitcss",
  "rules": {
    "indentation": "tab",
    "number-leading-zero": null
  }
}

Changelog

License