Skip to content

Commit 4c30a9a

Browse files
committed
lint fixes
1 parent e4b1ea7 commit 4c30a9a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/apps/review/src/lib/models/Scorecard.model.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export enum ProjectType {
1111
QUALITY_ASSURANCE = 'QUALITY_ASSURANCE',
1212
}
1313

14-
export const ProjectTypeLabels: Record<ProjectType | 'DEVELOP' | 'QA', string> =
15-
{
14+
export const ProjectTypeLabels: Record<ProjectType | 'DEVELOP' | 'QA', string>
15+
= {
1616
[ProjectType.DEVELOPMENT]: 'Development',
1717
[ProjectType.DATA_SCIENCE]: 'Data Science',
1818
[ProjectType.DESIGN]: 'Design',
@@ -58,7 +58,8 @@ export const categoryByProjectType = {
5858
],
5959
} satisfies Record<ProjectType, string[]>
6060

61-
export const scorecardCategories = Object.values(categoryByProjectType).flat()
61+
export const scorecardCategories = Object.values(categoryByProjectType)
62+
.flat()
6263

6364
export enum ScorecardStatus {
6465
ACTIVE = 'ACTIVE',

0 commit comments

Comments
 (0)