Socket
Socket
Sign inDemoInstall

@qulix/stylelint-config-css

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @qulix/stylelint-config-css

Stylelint CSS Style Guide


Version published
Maintainers
1
Created

Readme

Source

stylelint-config-css

Stylelint shareable config for the Qulix CSS Style Guide

Installation

Install with npm:

$ npm install --save-dev tslint @qulix/stylelint-config-css

Install with yarn:

$ yarn --dev tslint @qulix/stylelint-config-css

Usage

Once the stylelint-config-css package is installed, you can use it by specifying @qulix/stylelint-config-css in the extends section of your TSLint configuration.

// .stylelintrc
{
  "extends": [
    "@qulix/stylelint-config-css"
  ],
  "rules": {
    // Additional, per-project rules...
  }
}

Migration

During migration, you can disable rulesets by overriding them in yours .stylelintrc configuration file

The rule set is stored in node_modules/@qulix/stylelint-config-css/rules

  "extends": [
    "@qulix/stylelint-config-css"
  ],
  "rules": {
    "color-hex-case": "upper",
    "color-hex-length": "short",
  }

License

MIT

Keywords

FAQs

Last updated on 05 Feb 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc