Skip to content

Commit

Permalink
fix: quality gate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Adi-204 committed Jan 14, 2025
1 parent 1f5b54d commit ebc8af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/commands/inspect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ import { ValidationError } from '../core/errors/validation-error';
import { numberOfComponents } from '../core/utils/numberOfComponents';

export default class Inspect extends Command {
static description = 'Show the number of servers, channels, and components in AsyncAPI files';
static readonly description = 'Show the number of servers, channels, and components in AsyncAPI files';

static flags = {
static readonly flags = {
...inspectFlags(),
...proxyFlags(), // Merge proxyFlags with validateFlags
};

static args = {
static readonly args = {
'spec-file': Args.string({ description: 'spec path, url, or context-name', required: false }),
proxyHost: Args.string({ description: 'Name of the Proxy Host', required: false }),
proxyPort: Args.string({ description: 'Name of the Port of the ProxyHost', required: false }),
Expand Down

0 comments on commit ebc8af9

Please sign in to comment.