0.2.0 • Published 7 years ago

stylelint-config-lowmess v0.2.0

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

stylelint-config-lowmess

This stylelint config contains rules specific to how I write my CSS. It is intended to be used with Prettier.

To see the rules that this config uses, please read the config itself.

Installation

npm install stylelint-config-lowmess --save-dev

Usage

Create a .stylelintrc file at the base of your project:

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

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.

For example, to change the indentation to tabs:

{
  "extends": "stylelint-config-lowmess",
  "rules": {
    "indentation": "tab"
  }
}