stylelint-config-rtablada

0.1.0 • Public • Published

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
  }
}

Package Sidebar

Install

npm i stylelint-config-rtablada

Weekly Downloads

0

Version

0.1.0

License

MIT

Last publish

Collaborators

  • rtablada