JSPM

stylelint-config-lukkien-scss

0.8.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q33194F
  • License BSD-3-Clause

Lukkien config for stylelint and SCSS usage

Package Exports

  • stylelint-config-lukkien-scss

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stylelint-config-lukkien-scss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

stylelint-config-lukkien-scss

NPM version

Our base Configuration rules to ensure your SCSS code is compliant with Lukkien code style. This configuration can be used on top of the stylelint-lukkien-config package in order to be SCSS compliant.

Installation

npm install --save-dev stylelint stylelint-scss stylelint-config-lukkien stylelint-config-lukkien-scss

or

yarn install --dev stylelint stylelint-scss stylelint-config-lukkien stylelint-config-lukkien-scss

Usage

Set your stylelint config to:

{
  "extends": [
    "stylelint-config-lukkien",
    "stylelint-config-lukkien-scss"
  ],
  "plugins": [
    "stylelint-scss"
  ],
}

Extending the config

Simply add a "plugins" key to your config and add your overrides there.

For example:

{
  "extends": [
    "stylelint-config-lukkien",
    "stylelint-config-lukkien-scss"
  ],
  "plugins": [
    "stylelint-scss"
  ],
  "rules": {
    "scss/dollar-variable-pattern": "^foo",
    "scss/selector-no-redundant-nesting-selector": true
  }
}