JSPM

@regrapes/stylelint-config-scss

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q28529F
    • License ISC

    REGRAPES SCSS-Stylelint config

    Package Exports

    • @regrapes/stylelint-config-scss
    • @regrapes/stylelint-config-scss/index.js

    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 (@regrapes/stylelint-config-scss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    @regrapes/stylelint-config-scss

    REGRAPES SCSS-Stylelint config

    Installation

    npm install @regrapes/stylelint-config-scss --save-dev

    Usage

    Set your stylelint config to:

    {
      "extends": "@regrapes/stylelint-config-scss"
    }

    Extending the config

    Add a "rules" key to your config, then add your overrides and additions there.

    You can turn off rules by setting its value to null. For example:

    {
      "extends": "@regrapes/stylelint-config-scss",
      "rules": {
        "selector-class-pattern": null
      }
    }

    Or lower the severity of a rule to a warning using the severity secondary option. For example:

    {
      "extends": "@regrapes/stylelint-config-scss",
      "rules": {
        "property-no-vendor-prefix": [
          true,
          {
            "severity": "warning"
          }
        ]
      }
    }