UNPKG

orionsoft-react-scripts

Version:

Orionsoft Configuration and scripts for Create React App.

65 lines (63 loc) 2.79 kB
/* eslint-disable global-require */ module.exports = { rules: { 'anchor-has-content': require('./rules/anchor-has-content'), 'aria-props': require('./rules/aria-props'), 'aria-proptypes': require('./rules/aria-proptypes'), 'aria-role': require('./rules/aria-role'), 'aria-unsupported-elements': require('./rules/aria-unsupported-elements'), 'click-events-have-key-events': require('./rules/click-events-have-key-events'), 'heading-has-content': require('./rules/heading-has-content'), 'href-no-hash': require('./rules/href-no-hash'), 'html-has-lang': require('./rules/html-has-lang'), 'img-has-alt': require('./rules/img-has-alt'), 'img-redundant-alt': require('./rules/img-redundant-alt'), 'label-has-for': require('./rules/label-has-for'), lang: require('./rules/lang'), 'mouse-events-have-key-events': require('./rules/mouse-events-have-key-events'), 'no-access-key': require('./rules/no-access-key'), 'no-marquee': require('./rules/no-marquee'), 'no-onchange': require('./rules/no-onchange'), 'no-static-element-interactions': require('./rules/no-static-element-interactions'), 'onclick-has-focus': require('./rules/onclick-has-focus'), 'onclick-has-role': require('./rules/onclick-has-role'), 'role-has-required-aria-props': require('./rules/role-has-required-aria-props'), 'role-supports-aria-props': require('./rules/role-supports-aria-props'), scope: require('./rules/scope'), 'tabindex-no-positive': require('./rules/tabindex-no-positive'), }, configs: { recommended: { parserOptions: { ecmaFeatures: { jsx: true, }, }, rules: { 'jsx-a11y/anchor-has-content': 'error', 'jsx-a11y/aria-props': 'error', 'jsx-a11y/aria-proptypes': 'error', 'jsx-a11y/aria-role': 'error', 'jsx-a11y/aria-unsupported-elements': 'error', 'jsx-a11y/click-events-have-key-events': 'error', 'jsx-a11y/heading-has-content': 'error', 'jsx-a11y/href-no-hash': 'error', 'jsx-a11y/html-has-lang': 'error', 'jsx-a11y/img-has-alt': 'error', 'jsx-a11y/img-redundant-alt': 'error', 'jsx-a11y/label-has-for': 'error', 'jsx-a11y/mouse-events-have-key-events': 'error', 'jsx-a11y/no-access-key': 'error', 'jsx-a11y/no-marquee': 'error', 'jsx-a11y/no-onchange': 'error', 'jsx-a11y/no-static-element-interactions': 'warn', 'jsx-a11y/onclick-has-focus': 'error', 'jsx-a11y/onclick-has-role': 'error', 'jsx-a11y/role-has-required-aria-props': 'error', 'jsx-a11y/role-supports-aria-props': 'error', 'jsx-a11y/scope': 'error', 'jsx-a11y/tabindex-no-positive': 'error', }, }, }, };