stylelint-high-performance-animation
Advanced tools
Comparing version 1.8.0 to 1.9.0
@@ -0,1 +1,5 @@ | ||
## v1.9.0 | ||
- Added: support for CSS logical properties (#36, #120). | ||
## v1.8.0 | ||
@@ -2,0 +6,0 @@ |
28
index.js
@@ -31,6 +31,6 @@ "use strict"; | ||
cssStepTimingFunctions, | ||
cssFramesTimingFunctions | ||
cssFramesTimingFunctions, | ||
); | ||
const cssTimingFunctionsRE = new RegExp( | ||
"^(" + cssTimingFunctions.join("|") + ").*" | ||
"^(" + cssTimingFunctions.join("|") + ").*", | ||
); | ||
@@ -44,4 +44,10 @@ | ||
"right", | ||
"inset-block-start", | ||
"inset-block-end", | ||
"inset-inline-start", | ||
"inset-inline-end", | ||
"width", | ||
"height", | ||
"inline-size", | ||
"block-size", | ||
"min-height", | ||
@@ -51,2 +57,6 @@ "max-height", | ||
"min-width", | ||
"min-block-size", | ||
"max-block-size", | ||
"min-inline-size", | ||
"max-inline-size", | ||
"padding", | ||
@@ -57,2 +67,6 @@ "padding-bottom", | ||
"padding-top", | ||
"padding-block-end", | ||
"padding-inline-start", | ||
"padding-inline-end", | ||
"padding-block-start", | ||
"margin", | ||
@@ -63,2 +77,6 @@ "margin-bottom", | ||
"margin-top", | ||
"margin-block-end", | ||
"margin-inline-start", | ||
"margin-inline-end", | ||
"margin-block-start", | ||
"display", | ||
@@ -78,2 +96,4 @@ "border-width", | ||
"overflow", | ||
"overflow-block", | ||
"overflow-inline", | ||
"line-height", | ||
@@ -154,3 +174,3 @@ "vertical-align", | ||
optional: true, | ||
} | ||
}, | ||
); | ||
@@ -249,3 +269,3 @@ | ||
}); | ||
} | ||
}, | ||
); | ||
@@ -252,0 +272,0 @@ |
{ | ||
"name": "stylelint-high-performance-animation", | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"description": "Stylelint rule for preventing the use of low performance animation and transition properties.", | ||
@@ -52,3 +52,3 @@ "main": "index.js", | ||
"parserOptions": { | ||
"ecmaVersion": 6 | ||
"ecmaVersion": "latest" | ||
}, | ||
@@ -122,7 +122,7 @@ "env": { | ||
"lint-staged": "^13.1.1", | ||
"np": "^7.6.3", | ||
"np": "^8.0.4", | ||
"postcss": "^8.4.21", | ||
"postcss-less": "^6.0.0", | ||
"postcss-scss": "^4.0.2", | ||
"prettier": "^2.3.2", | ||
"prettier": "^3.0.0", | ||
"stylelint": "^15.1.0" | ||
@@ -129,0 +129,0 @@ }, |
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
14242
246