Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

stylelint-config-tanker

TankerApp17MITdeprecated0.2.2

this package has been deprecated

The stylelint config used at Tanker.io

stylelint, stylelint-config, css, sass

readme

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

changelog

0.1.0

  • Initial release