New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@typhoon41/stylelint-config

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typhoon41/stylelint-config

Nikola Dragićević's shareable config for scss projects using stylelint.

latest
Source
npmnpm
Version
1.1.2
Version published
Maintainers
1
Created
Source

@typhoon41/stylelint-config

Strict, shareable config for scss projects using stylelint.

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

Installation

npm install stylelint @typhoon41/stylelint-config --save-dev

Usage

Just set your stylelint config to:

{
  "extends": "@typhoon41/stylelint-config"
}

Extending the config

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

For example, to change the at-rule-no-unknown rule to use its ignoreAtRules option, change the indentation to tabs, turn off the number-leading-zero rule,and add the unit-allowed-list rule:

{
  "extends": "stylelint-config-standard",
  "rules": {
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": ["extends", "ignores"]
      }
    ],
    "indentation": "tab",
    "number-leading-zero": null,
    "unit-allowed-list": ["em", "rem", "s"]
  }
}

License

Apache-2 © Nikola Dragićević

Keywords

stylelint

FAQs

Package last updated on 07 Oct 2025

Did you know?

Socket

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