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-a11y
Advanced tools
yarn add --dev stylelint stylelint-a11y
Create the .stylelintrc.json
config file (or open the existing one), add stylelint-a11y
to the plugins array and the rules you need to the rules list. All rules from stylelint-a11y need to be namespaced with a11y
.
Please refer to stylelint docs for the detailed info on using this linter.
Rule ID | Description | |
---|---|---|
font-size-is-readable | Disallow font sizes less than 15px | |
line-height-is-vertical-rhythmed | Disallow not vertical rhythmed line-height | |
⭐️✒️ | media-prefers-reduced-motion | Require certain styles if the animation or transition in media features |
no-display-none | Disallow content hiding with display: none property | |
no-obsolete-attribute | Disallow obsolete attribute using | |
no-obsolete-element | Disallow obsolete selectors using | |
no-spread-text | Require width of text in a comfortable range | |
⭐️ | no-outline-none | Disallow outline clearing |
no-text-align-justify | Disallow content with text-align: justify | |
⭐️✒️ | selector-pseudo-class-focus | Require or disallow a pseudo-element to the selectors with :hover |
{
"plugins": ["stylelint-a11y"],
"rules": {
"a11y/media-prefers-reduced-motion": true,
"a11y/no-outline-none": true,
"a11y/selector-pseudo-class-focus": true,
"a11y/font-size-is-readable": [true, { "severity": "warning" }],
"a11y/line-height-is-vertical-rhythmed": [true, { "severity": "warning" }],
"a11y/no-display-none": [true, { "severity": "warning" }],
"a11y/no-spread-text": [true, { "severity": "warning" }],
"a11y/no-obsolete-attribute": [true, { "severity": "warning" }],
"a11y/no-obsolete-element": [true, { "severity": "warning" }],
"a11y/no-text-align-justify": [true, { "severity": "warning" }]
}
}
There work on the plugin's rules is still in progress, so if you feel like it, you're welcome to help out in any of these (the plugin follows stylelint guidelines so most part of this is based on its docs):
We communicate via issues and pull requests.
There is also stackoverflow, which would be the preferred QA forum.
FAQs
Plugin for stylelint with a11y rules
The npm package stylelint-a11y receives a total of 10,374 weekly downloads. As such, stylelint-a11y popularity was classified as popular.
We found that stylelint-a11y demonstrated a not healthy version release cadence and project activity because the last version was released 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.