stylelint-scss
Advanced tools
Comparing version 6.3.0 to 6.3.1
{ | ||
"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 + "\\(([^)]+)\\)"); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
297491
8591
+ Addedknown-css-properties@0.31.0(transitive)
- Removedknown-css-properties@0.30.0(transitive)
Updatedknown-css-properties@^0.31.0