Skip to content

Commit

Permalink
fix: set arguments back to be required
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Jan 22, 2020
1 parent f44d4bf commit dc8edd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scanner/ArgumentsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export type ArgumentsProvider = {
uri: string;
auth: string | undefined;
json: boolean;
fail?: PracticeImpact | 'all'; // optional as the AP is used also with command dxs practices
recursive?: boolean; // optional as the AP is used also with command dxs practices
fail: PracticeImpact | 'all'; // optional as the AP is used also with command dxs practices
recursive: boolean; // optional as the AP is used also with command dxs practices
ci: boolean;
};

0 comments on commit dc8edd6

Please sign in to comment.