Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta committed Sep 14, 2023
1 parent 3bac0e2 commit d0a55c6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/lib/createGHA/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,7 @@ function getKey(args: OptionDefinition[], opts: CommandOptions): string | false
/**
* Constructs the command string that we pass into the workflow file.
*/
function constructCmdString(
command: keyof typeof commands,
args: OptionDefinition[],
opts: CommandOptions,
): string {
function constructCmdString(command: keyof typeof commands, args: OptionDefinition[], opts: CommandOptions): string {
const optsString = args
.sort(arg => (arg.defaultOption ? -1 : 0))
.map(arg => {
Expand Down

0 comments on commit d0a55c6

Please sign in to comment.