We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf39c27 commit e80defcCopy full SHA for e80defc
build/.eslintrc.yml
plugins/a11y/rate-limit/src/index.ts
@@ -66,7 +66,8 @@ export function apply(ctx: Context) {
66
67
let isUsage = true
68
for (const { name, notUsage } of Object.values(command._options)) {
69
- if (name in options && notUsage) isUsage = false
+ // --help is not a usage (#772)
70
+ if (name in options && (notUsage || name === 'help')) isUsage = false
71
}
72
73
// check usage
0 commit comments