@addon24/eslint-config
Version:
ESLint configuration rules for WorldOfTextcraft projects - Centralized configuration for all project types
17 lines (16 loc) • 550 B
JavaScript
export default {
rules: {
"jsx-a11y/anchor-is-valid": "error",
"jsx-a11y/no-noninteractive-element-interactions": "error",
"jsx-a11y/no-onchange": "off",
"jsx-a11y/no-static-element-interactions": "error",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/mouse-events-have-key-events": "off",
"jsx-a11y/no-autofocus": "off",
"jsx-quotes": "error",
"jsx-a11y/alt-text": "error",
"jsx-a11y/img-redundant-alt": "error",
"jsx-a11y/aria-role": "error",
"jsx-a11y/no-access-key": "error",
},
};