Skip to content

Latest commit

History

History
17 lines (14 loc) 路 387 Bytes

2022-03-07.md

File metadata and controls

17 lines (14 loc) 路 387 Bytes
publish_date tags
2022-03-07
react
  • fix for jsx-a11y/anchor-is-valid in next.js projects. Add to to your .eslint
"jsx-a11y/anchor-is-valid": [ "error", {
  "components": [ "Link" ],
  "specialLink": [ "hrefLeft", "hrefRight" ],
  "aspects": [ "invalidHref", "preferButton" ]
}]

source : jsx-eslint/eslint-plugin-jsx-a11y#402