style: fix linting issues met Prettier

This commit is contained in:
Lint Action 2025-04-24 19:28:16 +00:00
parent b45fc47b06
commit 18e17e0133
9 changed files with 184 additions and 160 deletions

View file

@ -73,7 +73,7 @@ export function makeTestQuestions(em: EntityManager, students: Student[], groups
timestamp: new Date(),
content: 'question',
});
question07 = em.create(Question, {
learningObjectLanguage: Language.English,
learningObjectVersion: 1,
@ -93,7 +93,7 @@ export function makeTestQuestions(em: EntityManager, students: Student[], groups
author: getTestleerling1(),
inGroup: getGroup1ConditionalLearningPath(),
timestamp: new Date(),
content: 'this is a second test question'
content: 'this is a second test question',
});
return [question01, question02, question03, question04, question05, question06, question07, question08];
@ -108,4 +108,4 @@ export function getQuestion07(): Question {
export function getQuestion08(): Question {
return question08;
}
}