1.0.0 • Published 6 months ago

@jhae/stylelint-config-strict-scss v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Version License Tests

Strict SCSS Stylelint Config

This config extends the stylelint-config-standard-scss shared config.

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

Installation

npm install --save-dev @jhae/stylelint-config-strict-scss

Usage

Create your .stylelintrc.yaml file with the following content:

extends:
  - '@jhae/stylelint-config-strict-scss'

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:
  - '@jhae/stylelint-config-strict-scss'
rules:
  scss/dollar-variable-pattern: null