0.1.0 • Published 9 years ago

stylelint-config-rtablada v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

stylelint-config-rtablada

NPM version Travis Build Status

SuitCSS shareable config for stylelint.

My CSS style guide is very similar to the SuitCSS's code style with one change in that I find that CSS rules should be grouped logically instead of alphabetically.

Installation

$ npm install stylelint-config-rtablada

Usage

Set your stylelint config to:

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

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-rtablada",
  "rules": {
    "indentation": [2, "tab"],
    "number-leading-zero": 0
  }
}

Changelog

License