.stylelintrc.json 269 B

123456789101112
  1. {
  2. "extends": [
  3. "stylelint-config-wordpress"
  4. ],
  5. "plugins": ["stylelint-a11y"],
  6. "rules": {
  7. "font-family-no-missing-generic-family-keyword": null,
  8. "no-descending-specificity": null,
  9. "a11y/no-outline-none": true,
  10. "a11y/selector-pseudo-class-focus": true
  11. }
  12. }