1.0.1 • Published 1 year ago

@godismyjudgebro/stylelint-config v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@godismyjudgebro/stylelint-config

Daniel’s preferred configuration for Stylelint. It supports both CSS and SCSS. When you install this package, the required packages, including Stylelint itself, will be automatically installed. It extends the standard Stylelint configurations for both languages (CSS and SCSS).

Installation

  1. Install the package (@godismyjudgebro/stylelint-config):
    npm i -D @godismyjudgebro/stylelint-config
  2. Add the following to your package.json:
    "stylelint": {
      "extends": "@godismyjudgebro/stylelint-config"
    }
  3. Optionally, add the following to your package.json to lint SCSS files:
    "scripts": {
      "lint:scss": "stylelint '**/*.scss'"
    }