Skip to content

Commit 3906810

Browse files
authoredSep 23, 2022
fix: update repo link (#349)
1 parent 75899ac commit 3906810

File tree

5 files changed

+27
-24
lines changed

5 files changed

+27
-24
lines changed
 

‎CHANGELOG.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
- Included `catch()` and `finally()` in `prefer-await-to-then` #196
2626
- Added some additional tests and upgraded some dev deps #196
2727
- Exempted array methods in prefer-await-to-callbacks
28-
([#212](https://github.com/xjamundx/eslint-plugin-promise/issues/212))
28+
([#212](https://github.com/eslint-community/eslint-plugin-promise/issues/212))
2929

3030
## 5.0.0
3131

@@ -37,7 +37,7 @@
3737

3838
## 4.3.0
3939

40-
- https://github.com/xjamundx/eslint-plugin-promise/pull/202
40+
- https://github.com/eslint-community/eslint-plugin-promise/pull/202
4141
- Udpated jest
4242

4343
## 4.2.2
@@ -52,40 +52,40 @@
5252
## 4.0.1
5353

5454
- Remove `promise/param-names` fixer
55-
([#146](https://github.com/xjamundx/eslint-plugin-promise/pull/146))
55+
([#146](https://github.com/eslint-community/eslint-plugin-promise/pull/146))
5656

5757
## 4.0.0
5858

5959
- Added fixer for `promise/no-new-statics` rule
60-
([#133](https://github.com/xjamundx/eslint-plugin-promise/pull/133))
60+
([#133](https://github.com/eslint-community/eslint-plugin-promise/pull/133))
6161
- Support ESLint v5
62-
([#144](https://github.com/xjamundx/eslint-plugin-promise/pull/144))
62+
([#144](https://github.com/eslint-community/eslint-plugin-promise/pull/144))
6363

6464
This is a breaking change that drops support for Node v4. In order to use ESLint
6565
v5 and eslint-plugin-promise v4, you must use Node >=6.
6666

6767
## 3.8.0
6868

6969
- Removed `promise/avoid-new` from recommended configuration
70-
([#119](https://github.com/xjamundx/eslint-plugin-promise/pull/119))
70+
([#119](https://github.com/eslint-community/eslint-plugin-promise/pull/119))
7171
- Ignored event listener callbacks in `promise/prefer-await-to-callbacks`
72-
([#117](https://github.com/xjamundx/eslint-plugin-promise/pull/117))
72+
([#117](https://github.com/eslint-community/eslint-plugin-promise/pull/117))
7373
- Ignored top-level awaits in `promise/prefer-await-to-then`
74-
([#126](https://github.com/xjamundx/eslint-plugin-promise/pull/126))
74+
([#126](https://github.com/eslint-community/eslint-plugin-promise/pull/126))
7575
- Added docs for `promise/no-nesting` and `promise/prefer-await-to-then`
76-
([#120](https://github.com/xjamundx/eslint-plugin-promise/pull/120))
77-
([#121](https://github.com/xjamundx/eslint-plugin-promise/pull/121))
76+
([#120](https://github.com/eslint-community/eslint-plugin-promise/pull/120))
77+
([#121](https://github.com/eslint-community/eslint-plugin-promise/pull/121))
7878

7979
## 3.7.0
8080

8181
- Added `promise/valid-params` rule
82-
([#85](https://github.com/xjamundx/eslint-plugin-promise/pull/85))
82+
([#85](https://github.com/eslint-community/eslint-plugin-promise/pull/85))
8383
- Added `promise/no-new-statics` rule
84-
([#82](https://github.com/xjamundx/eslint-plugin-promise/pull/82))
84+
([#82](https://github.com/eslint-community/eslint-plugin-promise/pull/82))
8585
- Added fixer for `promise/param-names` rule
86-
([#99](https://github.com/xjamundx/eslint-plugin-promise/pull/99))
86+
([#99](https://github.com/eslint-community/eslint-plugin-promise/pull/99))
8787
- Added rule documentation to each rule
88-
([#91](https://github.com/xjamundx/eslint-plugin-promise/pull/91))
88+
([#91](https://github.com/eslint-community/eslint-plugin-promise/pull/91))
8989

9090
## 3.6.0
9191

‎CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@ We're always looking for more opinions on discussions in the issue tracker. It's
4141
a good opportunity to influence the future direction of this tool.
4242

4343
The
44-
[`question` label](https://github.com/xjamundx/eslint-plugin-promise/labels/question)
44+
[`question` label](https://github.com/eslint-community/eslint-plugin-promise/labels/question)
4545
is a good place to find ongoing discussions.
4646

4747
### Write code
4848

4949
You can use issue labels to discover issues you could help out with:
5050

51-
- [`bug` issues](https://github.com/xjamundx/eslint-plugin-promise/labels/bug)
51+
- [`bug` issues](https://github.com/eslint-community/eslint-plugin-promise/labels/bug)
5252
are known bugs we'd like to fix
53-
- [`enhancement` issues](https://github.com/xjamundx/eslint-plugin-promise/labels/enhancement)
53+
- [`enhancement` issues](https://github.com/eslint-community/eslint-plugin-promise/labels/enhancement)
5454
are features we're open to including
5555

5656
The
57-
[`help wanted`](https://github.com/xjamundx/eslint-plugin-promise/labels/help%20wanted)
57+
[`help wanted`](https://github.com/eslint-community/eslint-plugin-promise/labels/help%20wanted)
5858
and
59-
[`good first issue`](https://github.com/xjamundx/eslint-plugin-promise/labels/good%20first%20issue)
59+
[`good first issue`](https://github.com/eslint-community/eslint-plugin-promise/labels/good%20first%20issue)
6060
labels are especially useful.
6161

6262
You may find an issue is assigned. Please double-check before starting on this

‎package.json

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,12 @@
1414
"Brett Zamir",
1515
"Aadit M Shah <aaditmshah@aadit.codes> (https://aadit.codes/)"
1616
],
17-
"repository": "https://github.com/xjamundx/eslint-plugin-promise",
18-
"homepage": "https://github.com/xjamundx/eslint-plugin-promise",
19-
"bugs": "https://github.com/xjamundx/eslint-plugin-promise/issues",
17+
"repository": {
18+
"type": "git",
19+
"url": "https://github.com/eslint-community/eslint-plugin-promise"
20+
},
21+
"homepage": "https://github.com/eslint-community/eslint-plugin-promise",
22+
"bugs": "https://github.com/eslint-community/eslint-plugin-promise/issues",
2023
"scripts": {
2124
"format": "prettier --write .",
2225
"lint": "eslint .",

‎rules/lib/get-docs-url.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const REPO_URL = 'https://github.com/xjamundx/eslint-plugin-promise'
3+
const REPO_URL = 'https://github.com/eslint-community/eslint-plugin-promise'
44

55
/**
66
* Generates the URL to documentation for the given rule name. It uses the

‎rules/no-native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = {
4848
const leftToBeResolved =
4949
scope.implicit.left ||
5050
/**
51-
* Fixes https://github.com/xjamundx/eslint-plugin-promise/issues/205.
51+
* Fixes https://github.com/eslint-community/eslint-plugin-promise/issues/205.
5252
* The problem was that @typescript-eslint has a scope manager
5353
* which has `leftToBeResolved` instead of the default `left`.
5454
*/

0 commit comments

Comments
 (0)
Please sign in to comment.