1. stylelint-config-standard-scss
The standard shareable SCSS config for Stylelint
stylelint-config-standard-scss
Package: stylelint-config-standard-scss
Created by: stylelint-scss
Last modified: Tue, 02 Apr 2024 19:44:06 GMT
Version: 13.1.0
License: MIT
Downloads: 4,480,681
Repository: https://github.com/stylelint-scss/stylelint-config-standard-scss

Install

npm install stylelint-config-standard-scss
yarn add stylelint-config-standard-scss

stylelint-config-standard-scss

npm version
Build Status
contributions welcome
Downloads per month

The standard shareable SCSS config for Stylelint.

This config:

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

Installation

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

Usage

Set your stylelint config to:

 {
  "extends": "stylelint-config-standard-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": "stylelint-config-standard-scss",
  "rules": {
    "scss/dollar-variable-pattern": null
  }
}

Changelog

License

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin