All Projects → YozhikM → Stylelint A11y

YozhikM / Stylelint A11y

Licence: mit
Plugin for stylelint with a11y rules

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Stylelint A11y

element-plus-admin
基于vite+ts+elementPlus
Stars: ✭ 361 (-5.99%)
Mutual labels:  stylelint
react-component-library-lerna
Build your own React component library managed with lerna, presented with storybook and published in private npm registry.
Stars: ✭ 55 (-85.68%)
Mutual labels:  stylelint
Fabric
💪一些保证代码质量的配置
Stars: ✭ 258 (-32.81%)
Mutual labels:  stylelint
ember-boilerplate
👓 The stable base upon which we build our Ember.js projects at Mirego.
Stars: ✭ 33 (-91.41%)
Mutual labels:  stylelint
db-portfolio
My personal portfolio website.
Stars: ✭ 97 (-74.74%)
Mutual labels:  stylelint
starbase
⭐ Production-ready website boilerplate made with webpack 5, modern JS (via Babel 7) & Sass
Stars: ✭ 70 (-81.77%)
Mutual labels:  stylelint
stylelint-config-twbs-bootstrap
Stylelint config for Bootstrap
Stars: ✭ 115 (-70.05%)
Mutual labels:  stylelint
Stylelint Config Rational Order
Stylelint config that sorts related property declarations by grouping together in the rational order 🚦
Stars: ✭ 313 (-18.49%)
Mutual labels:  stylelint
vue-cli-plugin-stylelint
Vue cli 3.x plugin for stylelint
Stars: ✭ 48 (-87.5%)
Mutual labels:  stylelint
Stylelint Config Recommended
The recommended shareable config for stylelint
Stars: ✭ 255 (-33.59%)
Mutual labels:  stylelint
react-js-boilerplate
A React + Redux + HOT + Webpack + Material-UI + Sass boilerplate
Stars: ✭ 14 (-96.35%)
Mutual labels:  stylelint
dva-typescript-antd-starter-kit
A admin dashboard application demo based on antd by typescript and dva
Stars: ✭ 61 (-84.11%)
Mutual labels:  stylelint
elint
A easy way to lint your code
Stars: ✭ 38 (-90.1%)
Mutual labels:  stylelint
7-react-admin-ts
用 ts + react-hooks 实现的管理后台
Stars: ✭ 23 (-94.01%)
Mutual labels:  stylelint
Vscode Stylelint
A Visual Studio Code extension to lint CSS/SCSS/Less with stylelint
Stars: ✭ 260 (-32.29%)
Mutual labels:  stylelint
electron-vue-boilerplate
Simple boilerplate for building Vue app with Electron and Webpack.
Stars: ✭ 53 (-86.2%)
Mutual labels:  stylelint
stylelint-processor-glamorous
💄 Lint glamorous and related css-in-js with stylelint
Stars: ✭ 18 (-95.31%)
Mutual labels:  stylelint
Stylelint Config Sass Guidelines
⚙ A stylelint config inspired by https://sass-guidelin.es/
Stars: ✭ 349 (-9.11%)
Mutual labels:  stylelint
Web Configs
Common configurations for building web apps at Shopify
Stars: ✭ 302 (-21.35%)
Mutual labels:  stylelint
jest-runner-stylelint
Stylelint runner for Jest
Stars: ✭ 18 (-95.31%)
Mutual labels:  stylelint

stylelint-a11y

NPM version npm PRs Welcome Build Status

Installation and usage

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.

Rules

  • ⭐️ - the mark of recommended rules.
  • ✒️ - the mark of fixable rules.
Rule ID Description
content-property-no-static-value Disallow unaccessible CSS generated content in pseudo-elements
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
media-prefers-color-scheme Require implementation of certain styles for selectors with colors.
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

Recommended config

Add recommended configuration by simply adding the following to extends in your stylelint configuration:

stylelint-a11y/recommended

This shareable config contains the following:

{
  "plugins": ["stylelint-a11y"],
  "rules": {
    "a11y/media-prefers-reduced-motion": true,
    "a11y/no-outline-none": true,
    "a11y/selector-pseudo-class-focus": true
  }
}

Since it adds stylelint-a11y to plugins, you don't have to do this yourself when extending this config.

Help out

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):

  • Create, enhance, and debug rules (see stylelint's guide to "Working on rules").
  • Improve documentation.
  • Chime in on any open issue or pull request.
  • Open new issues about your ideas on new rules, or for how to improve the existing ones, and pull requests to show us how your idea works.
  • Add new tests to absolutely anything.
  • Work on improving performance of rules.
  • Contribute to stylelint
  • Spread the word.

We communicate via issues and pull requests.

There is also stackoverflow, which would be the preferred QA forum.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].