Socket
Socket
Sign inDemoInstall

stylelint-scss

Package Overview
Dependencies
Maintainers
3
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stylelint-scss - npm Package Compare versions

Comparing version 6.3.0 to 6.3.1

8

package.json
{
"name": "stylelint-scss",
"description": "A collection of SCSS-specific rules for Stylelint",
"version": "6.3.0",
"version": "6.3.1",
"author": "Krister Kari",

@@ -16,6 +16,6 @@ "repository": "stylelint-scss/stylelint-scss",

"dependencies": {
"known-css-properties": "^0.30.0",
"known-css-properties": "^0.31.0",
"postcss-media-query-parser": "^0.2.3",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-selector-parser": "^6.0.15",
"postcss-selector-parser": "^6.1.0",
"postcss-value-parser": "^4.2.0"

@@ -36,3 +36,3 @@ },

"prettier": "^3.2.5",
"stylelint": "^16.5.0"
"stylelint": "^16.6.1"
},

@@ -39,0 +39,0 @@ "files": [

@@ -156,3 +156,3 @@ "use strict";

utils.report({
message: messages.expected(key),
message: messages.expected(node.type === "decl" ? node.prop : key),
node,

@@ -159,0 +159,0 @@ result,

@@ -57,2 +57,6 @@ "use strict";

if (!next && node.parent.parent.type === "pseudo") {
return;
}
if (next && next.type !== "combinator") {

@@ -59,0 +63,0 @@ return;

@@ -197,4 +197,10 @@ "use strict";

function checkMultiplication(string, index) {
const after = string.substring(index + 1);
const insideFn = isInsideFunctionCall(string, index);
// e.g. Tailwind @apply *:w-full;
if (after[0] === ":") {
return "char";
}
if (insideFn.is && insideFn.fn) {

@@ -201,0 +207,0 @@ const fnArgsReg = new RegExp(insideFn.fn + "\\(([^)]+)\\)");

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc