Skip to content

Commit f44fc05

Browse files
committedOct 28, 2021
[meta] update URLs
1 parent df34872 commit f44fc05

38 files changed

+79
-79
lines changed
 

Diff for: ‎CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,10 @@ Add new rules:
259259
==================
260260
- [breaking] - Update all rule schemas to accept objects. This allows a future schema expansion to not be a breaking change.
261261
- [breaking] - All rules with schemas that accepted a string OR array, now only allows an array.
262-
- [new] - `href-no-hash` accepts new schema property `specialLink` to check for custom `href` properties on elements. (fixes [#76](https://github.com/evcohen/eslint-plugin-jsx-a11y/issues/76))
262+
- [new] - `href-no-hash` accepts new schema property `specialLink` to check for custom `href` properties on elements. (fixes [#76](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/76))
263263
- [breaking][fix] - `img-has-alt` now prefers `alt=""` over `role="presentation"`. You can set both, but not just `role="presentation"` by itself to ensure a11y across all devices.
264264

265-
Note - see [rule documentation](https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules) for updated schemas.
265+
Note - see [rule documentation](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules) for updated schemas.
266266

267267
2.2.3 / 2016-10-08
268268
==================
@@ -354,7 +354,7 @@ Note - see [rule documentation](https://github.com/evcohen/eslint-plugin-jsx-a11
354354

355355
1.4.0 / 2016-06-10
356356
==================
357-
- [dependency] Integrate [jsx-ast-utils](https://github.com/evcohen/jsx-ast-utils)
357+
- [dependency] Integrate [jsx-ast-utils](https://github.com/jsx-eslint/jsx-ast-utils)
358358
- [fix] Better error reporting for aria-unsupported-elements indicating which prop to remove.
359359

360360

Diff for: ‎README.md

+35-35
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<img src="https://img.shields.io/npm/v/eslint-plugin-jsx-a11y.svg"
88
alt="npm version">
99
</a>
10-
<a href="https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/LICENSE.md">
10+
<a href="https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/LICENSE.md">
1111
<img src="https://img.shields.io/npm/l/eslint-plugin-jsx-a11y.svg"
1212
alt="license">
1313
</a>
14-
<a href='https://coveralls.io/github/evcohen/eslint-plugin-jsx-a11y?branch=master'>
15-
<img src='https://coveralls.io/repos/github/evcohen/eslint-plugin-jsx-a11y/badge.svg?branch=master' alt='Coverage Status' />
14+
<a href='https://coveralls.io/github/jsx-eslint/eslint-plugin-jsx-a11y?branch=master'>
15+
<img src='https://coveralls.io/repos/github/jsx-eslint/eslint-plugin-jsx-a11y/badge.svg?branch=master' alt='Coverage Status' />
1616
</a>
1717
<a href='https://npmjs.org/package/eslint-plugin-jsx-a11y'>
1818
<img src='https://img.shields.io/npm/dt/eslint-plugin-jsx-a11y.svg'
@@ -137,38 +137,38 @@ Add `plugin:jsx-a11y/recommended` or `plugin:jsx-a11y/strict` in `extends`:
137137

138138
Rule | Recommended | Strict
139139
------------ | ------------- | -------------
140-
[alt-text](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md) | error | error
141-
[anchor-has-content](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md) | error | error
142-
[anchor-is-valid](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md) | error | error
143-
[aria-activedescendant-has-tabindex](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-activedescendant-has-tabindex.md) | error | error
144-
[aria-props](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-props.md) | error | error
145-
[aria-proptypes](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-proptypes.md) | error | error
146-
[aria-role](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-role.md) | error | error
147-
[aria-unsupported-elements](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-unsupported-elements.md) | error | error
148-
[autocomplete-valid](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/autocomplete-valid.md) | error | error
149-
[click-events-have-key-events](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/click-events-have-key-events.md) | error | error
150-
[heading-has-content](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/heading-has-content.md) | error | error
151-
[html-has-lang](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/html-has-lang.md) | error | error
152-
[iframe-has-title](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/iframe-has-title.md) | error | error
153-
[img-redundant-alt](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/img-redundant-alt.md) | error | error
154-
[interactive-supports-focus](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/interactive-supports-focus.md) | error | error
155-
[label-has-associated-control](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/label-has-associated-control.md) | error | error
156-
[media-has-caption](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/media-has-caption.md) | error | error
157-
[mouse-events-have-key-events](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/mouse-events-have-key-events.md) | error | error
158-
[no-access-key](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-access-key.md) | error | error
159-
[no-autofocus](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-autofocus.md) | error | error
160-
[no-distracting-elements](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-distracting-elements.md) | error | error
161-
[no-interactive-element-to-noninteractive-role](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-interactive-element-to-noninteractive-role.md) | error, with options | error
162-
[no-noninteractive-element-interactions](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-interactions.md) | error, with options | error
163-
[no-noninteractive-element-to-interactive-role](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-to-interactive-role.md) | error, with options | error
164-
[no-noninteractive-tabindex](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-tabindex.md) | error, with options | error
165-
[no-onchange](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-onchange.md) | error | error
166-
[no-redundant-roles](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-redundant-roles.md) | error | error
167-
[no-static-element-interactions](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-static-element-interactions.md) | error, with options | error
168-
[role-has-required-aria-props](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/role-has-required-aria-props.md) | error | error
169-
[role-supports-aria-props](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/role-supports-aria-props.md) | error | error
170-
[scope](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/scope.md) | error, with options | error
171-
[tabindex-no-positive](https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/tabindex-no-positive.md) | error | error
140+
[alt-text](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/alt-text.md) | error | error
141+
[anchor-has-content](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-has-content.md) | error | error
142+
[anchor-is-valid](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md) | error | error
143+
[aria-activedescendant-has-tabindex](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-activedescendant-has-tabindex.md) | error | error
144+
[aria-props](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-props.md) | error | error
145+
[aria-proptypes](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-proptypes.md) | error | error
146+
[aria-role](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-role.md) | error | error
147+
[aria-unsupported-elements](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/aria-unsupported-elements.md) | error | error
148+
[autocomplete-valid](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/autocomplete-valid.md) | error | error
149+
[click-events-have-key-events](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/click-events-have-key-events.md) | error | error
150+
[heading-has-content](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/heading-has-content.md) | error | error
151+
[html-has-lang](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/html-has-lang.md) | error | error
152+
[iframe-has-title](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/iframe-has-title.md) | error | error
153+
[img-redundant-alt](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/img-redundant-alt.md) | error | error
154+
[interactive-supports-focus](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/interactive-supports-focus.md) | error | error
155+
[label-has-associated-control](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/label-has-associated-control.md) | error | error
156+
[media-has-caption](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/media-has-caption.md) | error | error
157+
[mouse-events-have-key-events](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/mouse-events-have-key-events.md) | error | error
158+
[no-access-key](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-access-key.md) | error | error
159+
[no-autofocus](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-autofocus.md) | error | error
160+
[no-distracting-elements](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-distracting-elements.md) | error | error
161+
[no-interactive-element-to-noninteractive-role](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-interactive-element-to-noninteractive-role.md) | error, with options | error
162+
[no-noninteractive-element-interactions](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-interactions.md) | error, with options | error
163+
[no-noninteractive-element-to-interactive-role](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-element-to-interactive-role.md) | error, with options | error
164+
[no-noninteractive-tabindex](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-noninteractive-tabindex.md) | error, with options | error
165+
[no-onchange](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-onchange.md) | error | error
166+
[no-redundant-roles](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-redundant-roles.md) | error | error
167+
[no-static-element-interactions](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/no-static-element-interactions.md) | error, with options | error
168+
[role-has-required-aria-props](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/role-has-required-aria-props.md) | error | error
169+
[role-supports-aria-props](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/role-supports-aria-props.md) | error | error
170+
[scope](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/scope.md) | error, with options | error
171+
[tabindex-no-positive](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/tabindex-no-positive.md) | error | error
172172

173173

174174
The following rules have extra options when in *recommended* mode:

Diff for: ‎__tests__/src/rules/anchor-is-valid-test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import rule from '../../../src/rules/anchor-is-valid';
1818

1919
const ruleTester = new RuleTester();
2020

21-
const preferButtonErrorMessage = 'Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
21+
const preferButtonErrorMessage = 'Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
2222

23-
const noHrefErrorMessage = 'The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
23+
const noHrefErrorMessage = 'The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
2424

25-
const invalidHrefErrorMessage = 'The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
25+
const invalidHrefErrorMessage = 'The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
2626

2727
const preferButtonexpectedError = {
2828
message: preferButtonErrorMessage,

Diff for: ‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Ethan Cohen",
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/evcohen/eslint-plugin-jsx-a11y"
16+
"url": "https://github.com/jsx-eslint/eslint-plugin-jsx-a11y"
1717
},
1818
"main": "lib/index.js",
1919
"scripts": {

Diff for: ‎src/rules/accessible-emoji.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const schema = generateObjSchema();
1919
export default {
2020
meta: {
2121
docs: {
22-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/accessible-emoji.md',
22+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/accessible-emoji.md',
2323
},
2424
deprecated: true,
2525
schema: [schema],

Diff for: ‎src/rules/alt-text.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ const ruleByElement = {
195195
export default {
196196
meta: {
197197
docs: {
198-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/alt-text.md',
198+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/alt-text.md',
199199
},
200200
schema: [schema],
201201
},

Diff for: ‎src/rules/anchor-has-content.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const schema = generateObjSchema({ components: arraySchema });
1818
export default {
1919
meta: {
2020
docs: {
21-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/anchor-has-content.md',
21+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/anchor-has-content.md',
2222
},
2323
schema: [schema],
2424
},

Diff for: ‎src/rules/anchor-is-valid.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import { generateObjSchema, arraySchema, enumArraySchema } from '../util/schemas
1515

1616
const allAspects = ['noHref', 'invalidHref', 'preferButton'];
1717

18-
const preferButtonErrorMessage = 'Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
18+
const preferButtonErrorMessage = 'Anchor used as a button. Anchors are primarily expected to navigate. Use the button element instead. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
1919

20-
const noHrefErrorMessage = 'The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
20+
const noHrefErrorMessage = 'The href attribute is required for an anchor to be keyboard accessible. Provide a valid, navigable address as the href value. If you cannot provide an href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
2121

22-
const invalidHrefErrorMessage = 'The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/evcohen/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
22+
const invalidHrefErrorMessage = 'The href attribute requires a valid value to be accessible. Provide a valid, navigable address as the href value. If you cannot provide a valid href, but still need the element to resemble a link, use a button and change it with appropriate styles. Learn more: https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/blob/master/docs/rules/anchor-is-valid.md';
2323

2424
const schema = generateObjSchema({
2525
components: arraySchema,
@@ -30,7 +30,7 @@ const schema = generateObjSchema({
3030
export default ({
3131
meta: {
3232
docs: {
33-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/anchor-is-valid.md',
33+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/anchor-is-valid.md',
3434
},
3535
schema: [schema],
3636
},

Diff for: ‎src/rules/aria-activedescendant-has-tabindex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const domElements = [...dom.keys()];
2222
export default {
2323
meta: {
2424
docs: {
25-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-activedescendant-has-tabindex.md',
25+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-activedescendant-has-tabindex.md',
2626
},
2727
schema: [schema],
2828
},

Diff for: ‎src/rules/aria-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const schema = generateObjSchema();
3030
export default {
3131
meta: {
3232
docs: {
33-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-props.md',
33+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-props.md',
3434
},
3535
schema: [schema],
3636
},

Diff for: ‎src/rules/aria-proptypes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default {
6666
validityCheck,
6767
meta: {
6868
docs: {
69-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-proptypes.md',
69+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-proptypes.md',
7070
},
7171
schema: [schema],
7272
},

Diff for: ‎src/rules/aria-role.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const schema = generateObjSchema({
2323
export default {
2424
meta: {
2525
docs: {
26-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-role.md',
26+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-role.md',
2727
},
2828
schema: [schema],
2929
},

Diff for: ‎src/rules/aria-unsupported-elements.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const schema = generateObjSchema();
2525
export default {
2626
meta: {
2727
docs: {
28-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-unsupported-elements.md',
28+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/aria-unsupported-elements.md',
2929
},
3030
schema: [schema],
3131
},

Diff for: ‎src/rules/autocomplete-valid.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const schema = generateObjSchema({
1717
export default {
1818
meta: {
1919
docs: {
20-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/autocomplete-valid.md',
20+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/autocomplete-valid.md',
2121
},
2222
schema: [schema],
2323
},

Diff for: ‎src/rules/click-events-have-key-events.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const domElements = [...dom.keys()];
2323
export default {
2424
meta: {
2525
docs: {
26-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/click-events-have-key-events.md',
26+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/click-events-have-key-events.md',
2727
},
2828
schema: [schema],
2929
},

Diff for: ‎src/rules/heading-has-content.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const schema = generateObjSchema({ components: arraySchema });
2828
export default {
2929
meta: {
3030
docs: {
31-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/heading-has-content.md',
31+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/heading-has-content.md',
3232
},
3333
schema: [schema],
3434
},

Diff for: ‎src/rules/html-has-lang.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const schema = generateObjSchema();
1717
export default {
1818
meta: {
1919
docs: {
20-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/html-has-lang.md',
20+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/html-has-lang.md',
2121
},
2222
schema: [schema],
2323
},

Diff for: ‎src/rules/iframe-has-title.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const schema = generateObjSchema();
1717
export default {
1818
meta: {
1919
docs: {
20-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/iframe-has-title.md',
20+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/iframe-has-title.md',
2121
},
2222
schema: [schema],
2323
},

Diff for: ‎src/rules/img-redundant-alt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const schema = generateObjSchema({
2727
export default {
2828
meta: {
2929
docs: {
30-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/img-redundant-alt.md',
30+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/img-redundant-alt.md',
3131
},
3232
schema: [schema],
3333
},

Diff for: ‎src/rules/interactive-supports-focus.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const interactiveProps = [
5050
export default ({
5151
meta: {
5252
docs: {
53-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/interactive-supports-focus.md',
53+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/interactive-supports-focus.md',
5454
},
5555
schema: [schema],
5656
},

Diff for: ‎src/rules/label-has-for.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default {
8888
meta: {
8989
deprecated: true,
9090
docs: {
91-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/label-has-for.md',
91+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/label-has-for.md',
9292
},
9393
schema: [schema],
9494
},

Diff for: ‎src/rules/lang.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const schema = generateObjSchema();
1818
export default {
1919
meta: {
2020
docs: {
21-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/lang.md',
21+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/lang.md',
2222
},
2323
schema: [schema],
2424
},

Diff for: ‎src/rules/media-has-caption.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const isTrackType = (context, type) => {
3838
export default ({
3939
meta: {
4040
docs: {
41-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/media-has-caption.md',
41+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/media-has-caption.md',
4242
},
4343
schema: [schema],
4444
},

Diff for: ‎src/rules/mouse-events-have-key-events.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const schema = generateObjSchema();
2020
export default {
2121
meta: {
2222
docs: {
23-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/mouse-events-have-key-events.md',
23+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/mouse-events-have-key-events.md',
2424
},
2525
schema: [schema],
2626
},

Diff for: ‎src/rules/no-access-key.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const schema = generateObjSchema();
1717
export default {
1818
meta: {
1919
docs: {
20-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-access-key.md',
20+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-access-key.md',
2121
},
2222
schema: [schema],
2323
},

Diff for: ‎src/rules/no-autofocus.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const schema = generateObjSchema({
2323
export default {
2424
meta: {
2525
docs: {
26-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-autofocus.md',
26+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-autofocus.md',
2727
},
2828
schema: [schema],
2929
},

Diff for: ‎src/rules/no-distracting-elements.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const schema = generateObjSchema({
2626
export default {
2727
meta: {
2828
docs: {
29-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-distracting-elements.md',
29+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-distracting-elements.md',
3030
},
3131
schema: [schema],
3232
},

Diff for: ‎src/rules/no-interactive-element-to-noninteractive-role.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const domElements = [...dom.keys()];
3232
export default ({
3333
meta: {
3434
docs: {
35-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-interactive-element-to-noninteractive-role.md',
35+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-interactive-element-to-noninteractive-role.md',
3636
},
3737
schema: [{
3838
type: 'object',

Diff for: ‎src/rules/no-noninteractive-element-interactions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const schema = generateObjSchema({
4545
export default ({
4646
meta: {
4747
docs: {
48-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-element-interactions.md',
48+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-element-interactions.md',
4949
},
5050
schema: [schema],
5151
},

Diff for: ‎src/rules/no-noninteractive-element-to-interactive-role.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const domElements = [...dom.keys()];
3030
export default ({
3131
meta: {
3232
docs: {
33-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-element-to-interactive-role.md',
33+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-element-to-interactive-role.md',
3434
},
3535
schema: [{
3636
type: 'object',

Diff for: ‎src/rules/no-noninteractive-tabindex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const schema = generateObjSchema({
3939
export default ({
4040
meta: {
4141
docs: {
42-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-tabindex.md',
42+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-noninteractive-tabindex.md',
4343
},
4444
schema: [schema],
4545
},

Diff for: ‎src/rules/no-onchange.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const schema = generateObjSchema();
2222
export default {
2323
meta: {
2424
docs: {
25-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-onchange.md',
25+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-onchange.md',
2626
},
2727
deprecated: true,
2828
schema: [schema],

Diff for: ‎src/rules/no-redundant-roles.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const DEFAULT_ROLE_EXCEPTIONS = { nav: ['navigation'] };
2626
export default ({
2727
meta: {
2828
docs: {
29-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-redundant-roles.md',
29+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-redundant-roles.md',
3030
},
3131
schema: [{
3232
type: 'object',

Diff for: ‎src/rules/no-static-element-interactions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const schema = generateObjSchema({
4444
export default ({
4545
meta: {
4646
docs: {
47-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-static-element-interactions.md',
47+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/no-static-element-interactions.md',
4848
},
4949
schema: [schema],
5050
},

Diff for: ‎src/rules/role-has-required-aria-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const schema = generateObjSchema();
2727
export default {
2828
meta: {
2929
docs: {
30-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/role-has-required-aria-props.md',
30+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/role-has-required-aria-props.md',
3131
},
3232
schema: [schema],
3333
},

Diff for: ‎src/rules/role-supports-aria-props.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const schema = generateObjSchema();
3636
export default {
3737
meta: {
3838
docs: {
39-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/role-supports-aria-props.md',
39+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/role-supports-aria-props.md',
4040
},
4141
schema: [schema],
4242
},

Diff for: ‎src/rules/scope.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const schema = generateObjSchema();
1818
export default {
1919
meta: {
2020
docs: {
21-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/scope.md',
21+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/scope.md',
2222
},
2323
schema: [schema],
2424
},

Diff for: ‎src/rules/tabindex-no-positive.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const schema = generateObjSchema();
1717
export default {
1818
meta: {
1919
docs: {
20-
url: 'https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules/tabindex-no-positive.md',
20+
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/master/docs/rules/tabindex-no-positive.md',
2121
},
2222
schema: [schema],
2323
},

0 commit comments

Comments
 (0)
Please sign in to comment.