Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
stylelint-high-performance-animation
Advanced tools
Stylelint rule for preventing the use of low performance animation and transition properties.
Stylelint rule for preventing the use of low performance animation and transition properties.
This is a fork of stylelint-performance-animation stylelint plugin. It uses a blacklist for harmful properties instead of a whitelist, which makes it easy to avoid false positives and allows you to specify which type of properties to warn for (layout
/paint
).
npm install stylelint-high-performance-animation --save-dev
or
yarn add stylelint-high-performance-animation --dev
Add this config to your .stylelintrc
or stylelint config inside package.json
:
{
"plugins": ["stylelint-high-performance-animation"],
"rules": {
"plugin/no-low-performance-animation-properties": true
}
}
div {
transition: margin 350ms ease-in;
}
/** ^^^^^^
* You should not use low performance animation properties */
@keyframes myAnimation {
50% {
top: 5px;
}
}
/** ^^^^^^
* You should not use low performance animation properties */
For more information read article By Paul Lewis and Paul Irish
true
The following pattern is considered warning:
div {
transition: margin-left 350ms ease-in;
}
The following pattern is not considered warning:
div {
transition: transform 350ms ease-in;
}
ignore: "paint-properties"
Makes the rule not warn for properties that cause paint
and only warn for properties that cause layout
.
ignoreProperties: [string]
Given:
{ ignoreProperties: ['color', 'background-color'] }
The following pattern is considered warning:
div {
transition-property: color, margin;
}
The following pattern is not considered warning:
div {
transition-property: color, opacity, background-color;
}
MIT
FAQs
Stylelint rule for preventing the use of low performance animation and transition properties.
We found that stylelint-high-performance-animation demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.