7.1.1 • Published 7 years ago

stylelint-config-factorial v7.1.1

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

stylelint-config-factorial

Factorial shareable config for stylelint.

Configuration rules to ensure your CSS code is compliant with Factorial's CSS code style.

Our configuration extends stylelint-config-suitcss and is also based on the wonderful work at SUIT CSS's code style.

Installation

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

Usage

Create a .stylelintrc file in your project and set your config to:

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

This configuration then can be consumed by various tools.
We recommend using a plugin for your build tool and editor.

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

Changelog

License