.hintrc 420 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "extends": [
  3. "development"
  4. ],
  5. "hints": {
  6. "compat-api/css": [
  7. "default",
  8. {
  9. "ignore": [
  10. "position: sticky",
  11. "backdrop-filter",
  12. "user-select"
  13. ]
  14. }
  15. ],
  16. "axe/forms": [
  17. "default",
  18. {
  19. "select-name": "off"
  20. }
  21. ],
  22. "axe/text-alternatives": [
  23. "default",
  24. {
  25. "image-alt": "off"
  26. }
  27. ]
  28. }
  29. }