0.1.5 • Published 11 months ago

@kaas-devteam/stylelint-config v0.1.5

Weekly downloads
-
License
ISC
Repository
-
Last release
11 months ago

The standard shareable SCSS config for Stylelint shared by kaas front-end team.

This config:

  • extends the stylelint-config-prettier-scss
  • extends the stylelint-config-standard-scss

Installation

$ npm install @kaas-devteam/stylelint-config

Usage

Set your stylelint config to

{
  "extends": "@kaas-devteam/stylelint-config"
}

Extending the config

Simply add a "rules" key to your config, then add your overrides and additions there.
For example, to turn off the scss/dollar-variable-pattern rule:

{
  "extends": "@kaas-devteam/stylelint-config",
  "rules": {
    "scss/at-extend-no-missing-placeholder": null
  }
}