0.2.2 • Published 8 years ago

stylelint-config-tanker v0.2.2

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

stylelint-config-tanker

NPM version Build Status GitHub license

The stylelint config used at Tanker.io.

Installation

$ npm install stylelint-config-tanker --save-dev

Usage

Create a .stylelintrc file with the following basic configuration:

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

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-tanker",
  "rules": {
    "indentation": "tab",
    "number-leading-zero": null
  }
}

Changelog

License