1.0.4 • Published 3 years ago

mingoos-stylelint v1.0.4

Weekly downloads
12
License
ISC
Repository
github
Last release
3 years ago

mingoos-stylelint

Basic stylelint rules for CSS, SASS, SCSS

How to use

  1. Install package
$npm install --save-dev mingoos-stylelint
/* OR */
$npm install -D mingoos-stylelint
  1. Exntends on your config file
// .stylelintrc.json
{
  "extends": [
    "mingoos-stylelint"
  ],
  "rules": {
    "override": "your rules"
  }
}
  1. Add npm script (optional)
// package.json
{
  "scripts": {
    "stylelint": "npx stylelint \"**/*.{css,sass,scss}\"",
    "stylelint:fix": "npx stylelint \"**/*.{css,sass,scss}\" --fix"
  }
}

Rules

...