0.0.2 • Published 5 years ago

@qulix/stylelint-config-scss v0.0.2

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

stylelint-config-scss

Stylelint shareable config for the Qulix SCSS Style Guide

Installation

Install with npm:

$ npm install --save-dev tslint @qulix/stylelint-config-scss

Install with yarn:

$ yarn --dev tslint @qulix/stylelint-config-scss

Usage

Once the stylelint-config-scss package is installed, you can use it by specifying @qulix/stylelint-config-scss in the extends section of your TSLint configuration.

// .stylelintrc
{
  "extends": [
    "@qulix/stylelint-config-scss"
  ],
  "rules": {
    // Additional, per-project rules...
  }
}

Migration

During migration, you can disable rulesets by overriding them in yours .stylelintrc configuration file

The rule set is stored in node_modules/@qulix/stylelint-config-scss/rules

  "extends": [
    "@qulix/stylelint-config-scss"
  ],
  "rules": {
    "scss/at-extend-no-missing-placeholder": false,
    "scss/selector-no-redundant-nesting-selector": true,
  }

License

MIT

0.0.2

5 years ago

0.0.1

5 years ago