Skip to content

Commit 2d8e396

Browse files
authored
chore: replace previous repo references (#66)
1 parent d0a1585 commit 2d8e396

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ To enable this configuration use the `extends` property in your
140140
| [prefer-explicit-assert](docs/rules/prefer-explicit-assert.md) | Suggest using explicit assertions rather than just `getBy*` queries | | |
141141
| [consistent-data-testid](docs/rules/consistent-data-testid.md) | Ensure `data-testid` values match a provided regex. | | |
142142

143-
[build-badge]: https://img.shields.io/travis/Belco90/eslint-plugin-testing-library?style=flat-square
144-
[build-url]: https://travis-ci.org/belco90/eslint-plugin-testing-library
143+
[build-badge]: https://img.shields.io/travis/testing-library/eslint-plugin-testing-library?style=flat-square
144+
[build-url]: https://travis-ci.org/testing-library/eslint-plugin-testing-library
145145
[version-badge]: https://img.shields.io/npm/v/eslint-plugin-testing-library?style=flat-square
146146
[version-url]: https://www.npmjs.com/package/eslint-plugin-testing-library
147147
[license-badge]: https://img.shields.io/npm/l/eslint-plugin-testing-library?style=flat-square
@@ -185,6 +185,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
185185

186186
<!-- markdownlint-enable -->
187187
<!-- prettier-ignore-end -->
188+
188189
<!-- ALL-CONTRIBUTORS-LIST:END -->
189190

190191
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

lib/rules/prefer-expect-query-by.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module.exports = {
8888
messageId: 'expectQueryBy',
8989
// TODO: we keep the autofixing disabled for now, until we figure out
9090
// a better way to amend for the edge cases.
91-
// See also the related discussion: https://github.com/Belco90/eslint-plugin-testing-library/pull/22#discussion_r335394402
91+
// See also the related discussion: https://github.com/testing-library/eslint-plugin-testing-library/pull/22#discussion_r335394402
9292
// fix(fixer) {
9393
// return fixer.replaceText(
9494
// nodesGetBy[0],

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const combineQueries = (variants, methods) => {
1313
};
1414

1515
const getDocsUrl = ruleName =>
16-
`https://github.com/Belco90/eslint-plugin-testing-library/tree/master/docs/rules/${ruleName}.md`;
16+
`https://github.com/testing-library/eslint-plugin-testing-library/tree/master/docs/rules/${ruleName}.md`;
1717

1818
const SYNC_QUERIES_VARIANTS = ['getBy', 'getAllBy', 'queryBy', 'queryAllBy'];
1919
const ASYNC_QUERIES_VARIANTS = ['findBy', 'findAllBy'];

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/Belco90/eslint-plugin-testing-library.git"
17+
"url": "https://github.com/testing-library/eslint-plugin-testing-library.git"
1818
},
19-
"homepage": "https://github.com/Belco90/eslint-plugin-testing-library",
19+
"homepage": "https://github.com/testing-library/eslint-plugin-testing-library",
2020
"bugs": {
21-
"url": "https://github.com/Belco90/eslint-plugin-testing-library/issues"
21+
"url": "https://github.com/testing-library/eslint-plugin-testing-library/issues"
2222
},
2323
"main": "lib/index.js",
2424
"files": [

0 commit comments

Comments
 (0)