Skip to content

Commit eadd70c

Browse files
committedAug 11, 2023
[patch] mouse-events-have-key-events: rport the attribute, not the node
This has the side benefit of making the error message ordering consistent, since when both were on the JSXOpeningElement, since eslint/node combinations ordered the errors inconsistently
1 parent 0c278f4 commit eadd70c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎__tests__/src/rules/mouse-events-have-key-events-test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@ const ruleTester = new RuleTester();
2020

2121
const mouseOverError = {
2222
message: 'onMouseOver must be accompanied by onFocus for accessibility.',
23-
type: 'JSXOpeningElement',
23+
type: 'JSXAttribute',
2424
};
2525
const pointerEnterError = {
2626
message: 'onPointerEnter must be accompanied by onFocus for accessibility.',
27-
type: 'JSXOpeningElement',
27+
type: 'JSXAttribute',
2828
};
2929
const mouseOutError = {
3030
message: 'onMouseOut must be accompanied by onBlur for accessibility.',
31-
type: 'JSXOpeningElement',
31+
type: 'JSXAttribute',
3232
};
3333
const pointerLeaveError = {
3434
message: 'onPointerLeave must be accompanied by onBlur for accessibility.',
35-
type: 'JSXOpeningElement',
35+
type: 'JSXAttribute',
3636
};
3737

3838
ruleTester.run('mouse-events-have-key-events', rule, {

‎src/rules/mouse-events-have-key-events.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default ({
6767

6868
if (hasOnFocus === false || onFocusValue === null || onFocusValue === undefined) {
6969
context.report({
70-
node,
70+
node: getProp(attributes, firstHoverInHandlerWithValue),
7171
message: `${firstHoverInHandlerWithValue} must be accompanied by onFocus for accessibility.`,
7272
});
7373
}
@@ -86,7 +86,7 @@ export default ({
8686

8787
if (hasOnBlur === false || onBlurValue === null || onBlurValue === undefined) {
8888
context.report({
89-
node,
89+
node: getProp(attributes, firstHoverOutHandlerWithValue),
9090
message: `${firstHoverOutHandlerWithValue} must be accompanied by onBlur for accessibility.`,
9191
});
9292
}

0 commit comments

Comments
 (0)
Please sign in to comment.