Skip to content

Commit

Permalink
Merge pull request #1385 from intuit/dependabot/npm_and_yarn/eslint-p…
Browse files Browse the repository at this point in the history
…lugin-jsdoc-30.0.2

Bump eslint-plugin-jsdoc from 28.6.1 to 30.0.2
  • Loading branch information
hipstersmoothie authored Jul 21, 2020
2 parents b38d999 + 31442a1 commit 6073901
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"eslint-config-xo": "^0.29.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.1",
"eslint-plugin-jsdoc": "^28.5.1",
"eslint-plugin-jsdoc": "^30.0.2",
"eslint-plugin-prettier": "^3.1.1",
"graphql": "^15.0.0",
"husky": "^4.0.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/bin/auto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ try {

if (json.name.startsWith("@auto-canary")) {
moduleAlias.addAliases({
/** We want to rewrite all the imports for canary (ex: npm plugin requiring core) */
"@auto-it": (fromPath: string, request: string) =>
// We want to rewrite all the imports for canary (ex: npm plugin requiring core)
request.startsWith("@auto-it") &&
// but we also want to be able to require official plugins from a canary
!fromPath.endsWith("noop.js") &&
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ export default class Git {
previews: ["symmetra-preview"],
request: { agent: this.options.agent },
throttle: {
/** Add a wait once rate limit is hit */
onRateLimit: (retryAfter: number, opts: ThrottleOpts) => {
this.logger.log.warn(
`Request quota exhausted for request ${opts.method} ${opts.url}`
Expand All @@ -147,8 +148,8 @@ export default class Git {
return true;
}
},
/** does not retry, only logs an error */
onAbuseLimit: (_: number, opts: ThrottleOpts) => {
// does not retry, only logs an error
this.logger.log.error(
`Went over abuse rate limit ${opts.method} ${opts.url}`
);
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ async function getLabel(label?: ILabelDefinition) {
description: #{description},
releaseType: #{releaseType}
}`,
/** Check if returned config is valid */
// @ts-ignore
validate: (state: {
/** The result of the prompt */
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7398,14 +7398,14 @@ eslint-plugin-jest@^23.0.1:
dependencies:
"@typescript-eslint/experimental-utils" "^2.5.0"

eslint-plugin-jsdoc@^28.5.1:
version "28.6.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-28.6.1.tgz#c9e9da59d0d3cef4fb45ffb91c0acde43af4e418"
integrity sha512-Z3y7hcNPDuhL339D1KOf9SY8pMAxYxhaG4QLtu3KVn20k/hNF1u6WQv44wvuSCb6OfPJ4say37RUlSNqIjR+mw==
eslint-plugin-jsdoc@^30.0.2:
version "30.0.2"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.0.2.tgz#4dd21f9ffb2b3d7016176043b6358fe341b23d03"
integrity sha512-vqrVShEIe8np/2tSJhkZethJpgZAzZ5ZcV4pfH6785jEVtfcChy3X2DP73qoe9/6sbf6naIGfsoRFyqjBTgypg==
dependencies:
comment-parser "^0.7.5"
debug "^4.1.1"
jsdoctypeparser "^7.0.0"
jsdoctypeparser "^8.0.0"
lodash "^4.17.15"
regextras "^0.7.1"
semver "^7.3.2"
Expand Down Expand Up @@ -11205,10 +11205,10 @@ jsbn@~0.1.0:
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=

jsdoctypeparser@^7.0.0:
version "7.0.0"
resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-7.0.0.tgz#957192fbcb8c574240092cca4635383a6ed706eb"
integrity sha512-6vWPn5qSy+MbgCVjXsQKVkRywhs+IxFU7Chw72DKsWoGueYp6QX8eTc55+EA0yPGYfhmglb1gfi283asXirfGQ==
jsdoctypeparser@^8.0.0:
version "8.0.0"
resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-8.0.0.tgz#a04a944539d3f86e30040c1ece6f6730f865f81a"
integrity sha512-eLCs6s4JqN8TjFJfgdiLHRvogLhOAJz+5RIA2FtoMe6ZDyuvghvppnlIToqAEnVbxRqLMrfnNXpW8FpmR6IMBw==

jsdom@^15.2.1:
version "15.2.1"
Expand Down

0 comments on commit 6073901

Please sign in to comment.