Skip to content

rtablada/stylelint-config-rtablada

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published