Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Fgerthoffert committed Mar 7, 2023
1 parent 67fe06f commit 96384d7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion cli/src/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,15 @@ export interface IJiraIssue {
points: number;
jql: string; // JQL Query used to fetch the issue
openedForBusinessDays: number;
daysToRelease?: number;
weeksToRelease?: number;
monthsToRelease?: number;
daysToReleaseIfToday?: number;
weeksToReleaseIfToday?: number;
monthsToReleaseIfToday?: number;
daysToResolution?: number;
weeksToResolution?: number;
monthsToResolution?: number;
}

export interface IDays {
Expand Down Expand Up @@ -202,7 +211,7 @@ export interface UserConfig {
jira: UserConfigJira;
versions: {
projectKeys: Array<string>;
monthsToChart: string;
monthsToChart: number;
from: string;
defaultFilters: {
name: string;
Expand Down

0 comments on commit 96384d7

Please sign in to comment.