New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@webdevstudios/stylelint-no-debug

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webdevstudios/stylelint-no-debug

A custom stylelint rule to catch usage of @debug statements

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

WebDevStudios Branding

@webdevstudios/stylelint-no-debug

A stylelint custom rule to catch usage of @debug statements.

This rule will cause stylelint to warn you whenever @debug is used.

Installation

npm install @webdevstudios/stylelint-no-debug

This plugin is compatible with v5.0.1+.

Details

a { /* Not OK */
   @debug $blue;
   color: $blue;
}

a { /* OK */
   color: $blue;
}

Usage

Add "@webdevstudios/stylelint-no-debug" to your stylelint config plugins array, then add @webdevstudios/stylelint-no-debug/no-debug to your rules, set to true.

As follows:

{
  "plugins": [
    "@webdevstudios/stylelint-no-debug"
  ],
  "rules": {
    "no-debug": true
  }
};

Changelog

  • See Releases

Keywords

FAQs

Package last updated on 07 Oct 2020

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc