Skip to content

Commit

Permalink
PR Feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
BPScott committed Oct 18, 2019
1 parent 4938d3b commit 9d9590d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/new-version-pr-generator.js
Expand Up @@ -114,6 +114,7 @@ mkdir(sandbox);

const jobs = repositories.map((repository) => {
// We should fix this but I've not got the time at the moment
// SEE https://eslint.org/docs/rules/no-async-promise-executor
// eslint-disable-next-line no-async-promise-executor
return new Promise(async (resolve, reject) => {
try {
Expand Down
1 change: 1 addition & 0 deletions scripts/utilities/retry.js
Expand Up @@ -4,6 +4,7 @@ function sleep(ms) {

function retry(functionToTry, maxAttempts = 3, delay = 1000) {
// We should fix this but I've not got the time at the moment
// SEE https://eslint.org/docs/rules/no-async-promise-executor
// eslint-disable-next-line no-async-promise-executor
return new Promise(async (resolve, reject) => {
let remainingAttempts = maxAttempts;
Expand Down

0 comments on commit 9d9590d

Please sign in to comment.