242 lines
10 KiB
Diff
242 lines
10 KiB
Diff
diff --git a/src/index.js b/src/index.js
|
|
index 2fa185f..627af9b 100644
|
|
--- a/src/index.js
|
|
+++ b/src/index.js
|
|
@@ -1,48 +1,90 @@
|
|
/* eslint-disable global-require */
|
|
-const flatConfigBase = require('./configs/flat-config-base');
|
|
-const legacyConfigBase = require('./configs/legacy-config-base');
|
|
-const { name, version } = require('../package.json');
|
|
+import flatConfigBase from './configs/flat-config-base';
|
|
+import legacyConfigBase from './configs/legacy-config-base';
|
|
+import { name, version } from '../package.json';
|
|
+
|
|
+import accessibleEmoji from './rules/accessible-emoji';
|
|
+import altText from './rules/alt-text';
|
|
+import anchorAmbiguousText from './rules/anchor-ambiguous-text';
|
|
+import anchorHasContent from './rules/anchor-has-content';
|
|
+import anchorIsValid from './rules/anchor-is-valid';
|
|
+import ariaActivedescendantHasTabindex from './rules/aria-activedescendant-has-tabindex';
|
|
+import ariaProps from './rules/aria-props';
|
|
+import ariaProptypes from './rules/aria-proptypes';
|
|
+import ariaRole from './rules/aria-role';
|
|
+import ariaUnsupportedElements from './rules/aria-unsupported-elements';
|
|
+import autocompleteValid from './rules/autocomplete-valid';
|
|
+import clickEventsHaveKeyEvents from './rules/click-events-have-key-events';
|
|
+import controlHasAssociatedLabel from './rules/control-has-associated-label';
|
|
+import headingHasContent from './rules/heading-has-content';
|
|
+import htmlHasLang from './rules/html-has-lang';
|
|
+import iframeHasTitle from './rules/iframe-has-title';
|
|
+import imgRedundantAlt from './rules/img-redundant-alt';
|
|
+import interactiveSupportsFocus from './rules/interactive-supports-focus';
|
|
+import labelHasAssociatedControl from './rules/label-has-associated-control';
|
|
+import labelHasFor from './rules/label-has-for';
|
|
+import lang from './rules/lang';
|
|
+import mediaHasCaption from './rules/media-has-caption';
|
|
+import mouseEventsHaveKeyEvents from './rules/mouse-events-have-key-events';
|
|
+import noAriaHiddenOnFocusable from './rules/no-aria-hidden-on-focusable';
|
|
+import noAccessKey from './rules/no-access-key';
|
|
+import noAutofocus from './rules/no-autofocus';
|
|
+import noDistractingElements from './rules/no-distracting-elements';
|
|
+import noInteractiveElementToNoninteractiveRole from './rules/no-interactive-element-to-noninteractive-role';
|
|
+import noNoninteractiveElementInteractions from './rules/no-noninteractive-element-interactions';
|
|
+import noNoninteractiveElementToInteractiveRole from './rules/no-noninteractive-element-to-interactive-role';
|
|
+import noNoninteractiveTabindex from './rules/no-noninteractive-tabindex';
|
|
+import noOnChange from './rules/no-onchange';
|
|
+import noRedundantRoles from './rules/no-redundant-roles';
|
|
+import noStaticElementInteractions from './rules/no-static-element-interactions';
|
|
+import preferTagOverRole from './rules/prefer-tag-over-role';
|
|
+import roleHasRequiredAriaProps from './rules/role-has-required-aria-props';
|
|
+import roleSupportsAriaProps from './rules/role-supports-aria-props';
|
|
+import scope from './rules/scope';
|
|
+import tabindexNoPositive from './rules/tabindex-no-positive';
|
|
|
|
const allRules = {
|
|
- 'accessible-emoji': require('./rules/accessible-emoji'),
|
|
- 'alt-text': require('./rules/alt-text'),
|
|
- 'anchor-ambiguous-text': require('./rules/anchor-ambiguous-text'),
|
|
- 'anchor-has-content': require('./rules/anchor-has-content'),
|
|
- 'anchor-is-valid': require('./rules/anchor-is-valid'),
|
|
- 'aria-activedescendant-has-tabindex': require('./rules/aria-activedescendant-has-tabindex'),
|
|
- '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'),
|
|
- 'autocomplete-valid': require('./rules/autocomplete-valid'),
|
|
- 'click-events-have-key-events': require('./rules/click-events-have-key-events'),
|
|
- 'control-has-associated-label': require('./rules/control-has-associated-label'),
|
|
- 'heading-has-content': require('./rules/heading-has-content'),
|
|
- 'html-has-lang': require('./rules/html-has-lang'),
|
|
- 'iframe-has-title': require('./rules/iframe-has-title'),
|
|
- 'img-redundant-alt': require('./rules/img-redundant-alt'),
|
|
- 'interactive-supports-focus': require('./rules/interactive-supports-focus'),
|
|
- 'label-has-associated-control': require('./rules/label-has-associated-control'),
|
|
- 'label-has-for': require('./rules/label-has-for'),
|
|
- lang: require('./rules/lang'),
|
|
- 'media-has-caption': require('./rules/media-has-caption'),
|
|
- 'mouse-events-have-key-events': require('./rules/mouse-events-have-key-events'),
|
|
- 'no-access-key': require('./rules/no-access-key'),
|
|
- 'no-aria-hidden-on-focusable': require('./rules/no-aria-hidden-on-focusable'),
|
|
- 'no-autofocus': require('./rules/no-autofocus'),
|
|
- 'no-distracting-elements': require('./rules/no-distracting-elements'),
|
|
- 'no-interactive-element-to-noninteractive-role': require('./rules/no-interactive-element-to-noninteractive-role'),
|
|
- 'no-noninteractive-element-interactions': require('./rules/no-noninteractive-element-interactions'),
|
|
- 'no-noninteractive-element-to-interactive-role': require('./rules/no-noninteractive-element-to-interactive-role'),
|
|
- 'no-noninteractive-tabindex': require('./rules/no-noninteractive-tabindex'),
|
|
- 'no-onchange': require('./rules/no-onchange'),
|
|
- 'no-redundant-roles': require('./rules/no-redundant-roles'),
|
|
- 'no-static-element-interactions': require('./rules/no-static-element-interactions'),
|
|
- 'prefer-tag-over-role': require('./rules/prefer-tag-over-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'),
|
|
+ 'accessible-emoji': accessibleEmoji,
|
|
+ 'alt-text': altText,
|
|
+ 'anchor-ambiguous-text': anchorAmbiguousText,
|
|
+ 'anchor-has-content': anchorHasContent,
|
|
+ 'anchor-is-valid': anchorIsValid,
|
|
+ 'aria-activedescendant-has-tabindex': ariaActivedescendantHasTabindex,
|
|
+ 'aria-props': ariaProps,
|
|
+ 'aria-proptypes': ariaProptypes,
|
|
+ 'aria-role': ariaRole,
|
|
+ 'aria-unsupported-elements': ariaUnsupportedElements,
|
|
+ 'autocomplete-valid': autocompleteValid,
|
|
+ 'click-events-have-key-events': clickEventsHaveKeyEvents,
|
|
+ 'control-has-associated-label': controlHasAssociatedLabel,
|
|
+ 'heading-has-content': headingHasContent,
|
|
+ 'html-has-lang': htmlHasLang,
|
|
+ 'iframe-has-title': iframeHasTitle,
|
|
+ 'img-redundant-alt': imgRedundantAlt,
|
|
+ 'interactive-supports-focus': interactiveSupportsFocus,
|
|
+ 'label-has-associated-control': labelHasAssociatedControl,
|
|
+ 'label-has-for': labelHasFor,
|
|
+ lang,
|
|
+ 'media-has-caption': mediaHasCaption,
|
|
+ 'mouse-events-have-key-events': mouseEventsHaveKeyEvents,
|
|
+ 'no-access-key': noAccessKey,
|
|
+ 'no-aria-hidden-on-focusable': noAriaHiddenOnFocusable,
|
|
+ 'no-autofocus': noAutofocus,
|
|
+ 'no-distracting-elements': noDistractingElements,
|
|
+ 'no-interactive-element-to-noninteractive-role':
|
|
+ noInteractiveElementToNoninteractiveRole,
|
|
+ 'no-noninteractive-element-interactions': noNoninteractiveElementInteractions,
|
|
+ 'no-noninteractive-element-to-interactive-role':
|
|
+ noNoninteractiveElementToInteractiveRole,
|
|
+ 'no-noninteractive-tabindex': noNoninteractiveTabindex,
|
|
+ 'no-onchange': noOnChange,
|
|
+ 'no-redundant-roles': noRedundantRoles,
|
|
+ 'no-static-element-interactions': noStaticElementInteractions,
|
|
+ 'prefer-tag-over-role': preferTagOverRole,
|
|
+ 'role-has-required-aria-props': roleHasRequiredAriaProps,
|
|
+ 'role-supports-aria-props': roleSupportsAriaProps,
|
|
+ scope,
|
|
+ 'tabindex-no-positive': tabindexNoPositive,
|
|
};
|
|
|
|
const recommendedRules = {
|
|
@@ -60,15 +102,7 @@ const recommendedRules = {
|
|
'jsx-a11y/control-has-associated-label': [
|
|
'off',
|
|
{
|
|
- ignoreElements: [
|
|
- 'audio',
|
|
- 'canvas',
|
|
- 'embed',
|
|
- 'input',
|
|
- 'textarea',
|
|
- 'tr',
|
|
- 'video',
|
|
- ],
|
|
+ ignoreElements: ['audio', 'canvas', 'embed', 'input', 'textarea', 'tr', 'video'],
|
|
ignoreRoles: [
|
|
'grid',
|
|
'listbox',
|
|
@@ -139,24 +173,8 @@ const recommendedRules = {
|
|
'jsx-a11y/no-noninteractive-element-to-interactive-role': [
|
|
'error',
|
|
{
|
|
- ul: [
|
|
- 'listbox',
|
|
- 'menu',
|
|
- 'menubar',
|
|
- 'radiogroup',
|
|
- 'tablist',
|
|
- 'tree',
|
|
- 'treegrid',
|
|
- ],
|
|
- ol: [
|
|
- 'listbox',
|
|
- 'menu',
|
|
- 'menubar',
|
|
- 'radiogroup',
|
|
- 'tablist',
|
|
- 'tree',
|
|
- 'treegrid',
|
|
- ],
|
|
+ ul: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
|
|
+ ol: ['listbox', 'menu', 'menubar', 'radiogroup', 'tablist', 'tree', 'treegrid'],
|
|
li: [
|
|
'menuitem',
|
|
'menuitemradio',
|
|
@@ -214,15 +232,7 @@ const strictRules = {
|
|
'jsx-a11y/control-has-associated-label': [
|
|
'off',
|
|
{
|
|
- ignoreElements: [
|
|
- 'audio',
|
|
- 'canvas',
|
|
- 'embed',
|
|
- 'input',
|
|
- 'textarea',
|
|
- 'tr',
|
|
- 'video',
|
|
- ],
|
|
+ ignoreElements: ['audio', 'canvas', 'embed', 'input', 'textarea', 'tr', 'video'],
|
|
ignoreRoles: [
|
|
'grid',
|
|
'listbox',
|
|
@@ -299,22 +309,22 @@ const jsxA11y = {
|
|
const createConfig = (rules, flatConfigName) => ({
|
|
...(flatConfigName
|
|
? {
|
|
- ...flatConfigBase,
|
|
- name: `jsx-a11y/${flatConfigName}`,
|
|
- plugins: { 'jsx-a11y': jsxA11y },
|
|
- }
|
|
+ ...flatConfigBase,
|
|
+ name: `jsx-a11y/${flatConfigName}`,
|
|
+ plugins: { 'jsx-a11y': jsxA11y },
|
|
+ }
|
|
: { ...legacyConfigBase, plugins: ['jsx-a11y'] }),
|
|
rules: { ...rules },
|
|
});
|
|
|
|
// Create configs for the plugin object
|
|
-const configs = {
|
|
+export const configs = {
|
|
recommended: createConfig(recommendedRules),
|
|
strict: createConfig(strictRules),
|
|
};
|
|
-const flatConfigs = {
|
|
+export const flatConfigs = {
|
|
recommended: createConfig(recommendedRules, 'recommended'),
|
|
strict: createConfig(strictRules, 'strict'),
|
|
};
|
|
|
|
-module.exports = { ...jsxA11y, configs, flatConfigs };
|
|
+export default { ...jsxA11y, configs, flatConfigs };
|
|
diff --git a/src/util/mayContainChildComponent.js b/src/util/mayContainChildComponent.js
|
|
index 43a03ef..5e1035e 100644
|
|
--- a/src/util/mayContainChildComponent.js
|
|
+++ b/src/util/mayContainChildComponent.js
|
|
@@ -9,7 +9,7 @@
|
|
|
|
import type { JSXOpeningElement, Node } from 'ast-types-flow';
|
|
import { elementType as rawElementType } from 'jsx-ast-utils';
|
|
-import minimatch from 'minimatch';
|
|
+import { minimatch } from 'minimatch';
|
|
|
|
export default function mayContainChildComponent(
|
|
root: Node,
|